Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
amit_saini
Master III
Master III

Language Issue

Hi Folks ,

I'm having below scenario, I'm having one field in data base as "Reason_Name" and users are entering text in their local language .

I'm simply calling this filed like below:

Actually in above screenshot the content is in Chinese ,but it showing not sure in what format. Any idea how to get this in Chinese language???

Regards,

AS 

11 Replies
amit_saini
Master III
Master III
Author

Sorry Anil not working.

Regards,

AS

marcus_sommer

Are you sure that the origin chars are really chinese? Make sure of them during the load by checking the chars with ord() maybe with something quite simple like:

...

ord(mid(FIELD, 25, 1) as 25_Char,

...

and then checking the result. A good starting point should be this: cjk - What's the complete range for Chinese characters in Unicode? - Stack Overflow.

Further I think you will need to find a Font which could display these chars - I doubt that most of the common western Fonts will include these chars.

- Marcus