# Can I use cp5's textfield to input the language of another country?

**URL:** https://discourse.processing.org/t/can-i-use-cp5s-textfield-to-input-the-language-of-another-country/4923
**Category:** Libraries
**Created:** [October 27, 2018, 12:08pm UTC](https://discourse.processing.org/t/can-i-use-cp5s-textfield-to-input-the-language-of-another-country/4923 "2018-10-27T12:08:47Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![seo](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/seo/32/2034_2.png) [@seo](https://discourse.processing.org/u/seo)
#### Post date: [October 27, 2018, 12:08pm UTC](https://discourse.processing.org/t/can-i-use-cp5s-textfield-to-input-the-language-of-another-country/4923/1 "2018-10-27T12:08:47Z")

</div>

Hi! Can I type in languages such as Korea, China, and Japan?

```auto
import controlP5.*;
ControlP5 cp5;

void setup() {
  background(150);
  size(700,400);
  
  PFont font = loadFont("******(my font)*****.vlw");
  
  cp5 = new ControlP5(this);
  
  cp5.addTextfield("dddd")
     .setPosition(20,20)
     .setSize(400,40)
     .setFont(font)
     .setFocus(true)
     .setColor(0)
     .setColorActive(color(255,0,0)) 
     .setColorBackground(color(255)) 
     .setColorForeground(color(255))
     ;
                
}

void draw(){}

```
