How can I convert an international (e.g. Russian) String to \u numbers (unicode numbers)
e.g. \u041e\u041a for OK ?
|
|
||||
|
|
|
In case you need this to write a |
|||||||||||||
|
|
You could use |
||||
|
There are three parts to the answer
To get each character you can iterate through the String using the
The value of the char is the Unicode value. The Cyrillic Unicode characters are any character in the following ranges:
If it is in this range it is Cyrillic. Just perform an if check. If it is in the range use
Edit: probably should make the check |
||||
|
|
|
There's a command-line tool that ships with java called native2ascii. This converts unicode files to ASCII-escaped filess. I've found that this is a necessary step for generating .properties files for localization. |
|||
|
|
|
I also have this problem. I had a text on Portuguese whit have some especial characters, but these characters where already on unicode format (ex.: \u00e3). So I want to convert "S\u00e3o" to "São". I did it using the apache commons StringEscapeUtils. As @sorin-sbarnea said. Can be downloaded here. Do like that:
Use the method unescapeJava, there is also the method escapeJava, but this one puts the unicodes characters on the string. If any one knows a solution on pure Java, tel us. |
|||
|
|