0

I am new to Android.I have prepared one application for display Russian characters using Unicodes. unicodes for Russian i got from this site,

http://webdesign.about.com/od/localization/l/blhtmlcodes-ru.htm

My code is,

StringBuilder sb = new StringBuilder();
 sb.append("\u1040");
 tv.setText(sb.toString());

It is working fine.But it is showing like BOX.How to over come this.Please help me.

Th0rndike
  • 3,406
  • 3
  • 22
  • 42
user1336049
  • 33
  • 1
  • 5

1 Answers1

0

@Deucalion pointed it out first, but you meant to put "\u0410" instead of "\u1040".

ThomasW
  • 16,981
  • 4
  • 79
  • 106