views:

32

answers:

1

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