pranavjayadev
pranavjayadev

Reputation: 929

How to show Malayalam characters in BlackBerry application?

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?

Upvotes: 7

Views: 849

Answers (3)

pranavjayadev
pranavjayadev

Reputation: 929

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.

Upvotes: 0

Rahul
Rahul

Reputation: 172

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..

Upvotes: 1

Rahul
Rahul

Reputation: 172

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

Upvotes: 1

Related Questions