# \[Android\] 'Text is garbled.' When will it be resolved? help me

**URL:** https://discourse.processing.org/t/android-text-is-garbled-when-will-it-be-resolved-help-me/38969
**Category:** Processing for Android
**Created:** [September 25, 2022, 3:32am UTC](https://discourse.processing.org/t/android-text-is-garbled-when-will-it-be-resolved-help-me/38969 "2022-09-25T03:32:56Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![GWAK](https://avatars.discourse-cdn.com/v4/letter/g/13edae/32.png) [@GWAK](https://discourse.processing.org/u/GWAK)
#### Post date: [March 27, 2023, 12:10am UTC](https://discourse.processing.org/t/android-text-is-garbled-when-will-it-be-resolved-help-me/38969/3 "2023-03-27T00:10:51Z")

</div>

![problem](https://canada1.discourse-cdn.com/flex036/uploads/processingfoundation1/original/3X/5/5/555464982284f2b8984f3018e9090623d48caac1.jpeg)

```auto
String msg1 = "こんにちは。";
String msg2 = "안녕하세요.";
String msg3 = "你好。";

void setup(){
  
  size(displayWidth,displayHeight);

  background(255); fill(0);  
  
  PFont myFont = createFont(" ", 40); // Fonts with the language of each country
  textFont(myFont);  
  textAlign(LEFT,CENTER);
  text(msg1,10,100);
  text(msg2,10,150);
  text(msg3,10,200);
  
  
}
void draw(){  
  
}

```

‘Android solvers’ @Rupesh_Kumar@svan

As shown in the picture above, the ‘foreign language other than English’ font is broken.  
Is there a solution or is there a reason?

If anyone knows, please share or a solution.  
link : [Is there an Android Mode 4.1 problem(characters are broken.) / solution? - #9 by GWAK](https://discourse.processing.org/t/is-there-an-android-mode-4-1-problem-characters-are-broken-solution/15033/9)

---

_[View the full topic](https://discourse.processing.org/t/android-text-is-garbled-when-will-it-be-resolved-help-me/38969)._
