i am not able to display some of the currency symbols like afghani("\u060B"), kip("\u20AD"), in blackberry application. Am i missing something?
+2
A:
try to pass Unicode characters as char array instead of string:
add(new LabelField(new char[] { '\u060B' }));
Also, make sure you have specific font installed
Max Gontar
2010-02-11 19:11:43