Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I convert an international (e.g. Russian) String to \u numbers (unicode numbers)
e.g. \u041e\u041a for OK ?

share|improve this question

5 Answers

up vote 2 down vote accepted

In case you need this to write a .properties file you can just add the Strings into a Properties object and then save it to a file. It will take care for the conversion.

share|improve this answer
Well you need to make sure that you save the file in UTF-8 format (perhaps UTF-16 or UCS-2/4 will work) or you will have problems. – ArtB Jun 3 '11 at 17:18
1  
@ArtB: No, Properties interprets input files always as ISO-8859-1 (first unicode page) and also saves to that encoding. This is why it needs the \uXXXX escapes and creates them on saving. Although since Java version 1.6 Properties allows to read the input from a Reader object so that you would be able to make your own proprietary UTF-8 based properties file format. – x4u Jun 3 '11 at 17:26
Oh... doesn't that cause problems with non-first page languages? – ArtB Jun 3 '11 at 17:50
Yes, it results in comparatively large files for languages that use mostly characters outside 8859-1 the because the \uXXXX encoding is less space efficient than UTF-8 or UTF-16. It also makes it impossible to edit these files in any editor that is not aware of this special encoding. But at least it allows to save and load all unicode text to the extend that is supported by the Java VM in general. – x4u Jun 3 '11 at 18:00
@x4u I am not sure that \u notation will support Unicode characters outside Unicode BMP. – sorin Jun 3 '11 at 23:08
show 1 more comment

You could use escapeJavaStyleString from org.apache.commons.lang.StringEscapeUtils.

share|improve this answer
Which method does this? – ehsun7b Jun 3 '11 at 17:09
Updated the answer. – sorin Jun 3 '11 at 17:14

There are three parts to the answer

  1. Get the Unicode for each character
  2. Determine if it is in the Cyrillic Page
  3. Convert to Hexadecimal.

To get each character you can iterate through the String using the charAt() or getCharArray() methods.

for( char c : s.getCharArray() )

The value of the char is the Unicode value.

The Cyrillic Unicode characters are any character in the following ranges:

Cyrillic:            U+0400–U+04FF ( 1024 -  1279)
Cyrillic Supplement: U+0500–U+052F ( 1280 -  1327)
Cyrillic Extended-A: U+2DE0–U+2DFF (11744 - 11775)
Cyrillic Extended-B: U+A640–U+A69F (42560 - 42655)

If it is in this range it is Cyrillic. Just perform an if check. If it is in the range use Integer.toHexString() and prepend the "\\u". Put together it should look something like this:

StringBuilder b = new StringBuilder();

for( char c : s.getCharArray() )
    if( ( 1024 <= c && c <= 1279 ) || ( 1280 <= c && c <= 1327) || ( 11744 <= c && c <= 11775) || ( 42560 <= c && c <= 42655)  )
          b.append( "\\u" ).append( Integer.toHexString(c) );
    else
       b.append( c );

return b.toString();

Edit: probably should make the check c < 128 and reverse the if and the else bodies, you probably should escape everything that isn't ASCII. I was probably too literal in my reading of your question.

share|improve this answer

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.

share|improve this answer

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:

String text = "S\u00e3o"
text = StringEscapeUtils.unescapeJava(text);
System.out.println("text " + text);

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.