I am new to android.i am prepared one app, it support multiple languages.I want to display Arabic
characters.i found one site for Unicode's,
http://www.unics.uni-hannover.de/nhtcapri/arabic-alphabet.html
I used following code for display Arabic letters,
StringBuilder sb = new StringBuilder();
sb.append("\u0649");
tv.setText(sb.toString());
It is working fine,but showing square box.Please help me.