7

I am developing an application which needs to display Malayalam text on the screen, on a LabelField. The text is now displaying like the following

'&#3356';'&#3375';'&#3376';'&#3390';'&#3356';"

But I want to it as the follwing

ജയരാജ

How to do that?

Andrew Barber
  • 39,603
  • 20
  • 94
  • 123
pranavjayadev
  • 937
  • 7
  • 31

3 Answers3

1

You need to convert your text to javascript escapes of the format \u0987 and then this can be shown on blackberry devices.

Rahul
  • 172
  • 1
  • 4
1

Check unicode converter

Paste your string in above website in mixed input and see the java script escapes and you need to convert corresponding string to unicode using String.replace i think..

Rahul
  • 172
  • 1
  • 4
0

Convert this into ASCII format of any Malayalam font and set this Malayalam font as the default one for the application. I think this will solve your problem.

pranavjayadev
  • 937
  • 7
  • 31