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

How to get encoded version of string (e.g. \u0421\u043b\u0443\u0436\u0435\u0431\u043d\u0430\u044f) using Java?

EDIT: I guess the question is not very clear... Basically what I want is this:

Given string s="blalbla" I want to get string "\uXXX\uYYYY"

share|improve this question
Your edit is not an edit. It is a new question. – Vineet Reynolds Aug 4 '11 at 11:38
You have tagged this UTF-8, so do you want UTF-8? Or do you want UCS-2 (which is not a valid Unicode encoding) code units instead of proper logical Unicode code points? – tchrist Aug 4 '11 at 14:41

5 Answers

up vote 2 down vote accepted

You will need to extract each code point/unit from the String and encode it yourself. The following works for all Strings even if the individual linguistic characters within the String are composed of digraphs or ligatures.

public String getUnicodeEscapes(String aString)
{
    if (aString != null && aString.length() > 0)
    {
        int length = aString.length();
        StringBuilder buffer = new StringBuilder(length);
        for (int ctr = 0; ctr < length; ctr++)
        {
            char codeUnit = aString.charAt(ctr);
            String hexString = Integer.toHexString(codeUnit);
            String padAmount = "0000".substring(hexString.length());
            buffer.append("\\u");
            buffer.append(padAmount);
            buffer.append(hexString);
        }
        return buffer.toString();
    }
    else
    {
        return null;
    }
}

The above produces output as dictated by the Java Language Specification on Unicode escapes, i.e. it produces output of the form \uxxxx for each UTF-16 code unit. It addresses supplementary characters by producing a pair of code units represented as \uxxxx\uyyyy.

The originally posted code has been modified to produce Unicode codepoints in the format U+FFFFF:

public String getUnicodeCodepoints(String aString)
{
    if (aString != null && aString.length() > 0)
    {
        int length = aString.length();
        StringBuilder buffer = new StringBuilder(length);
        for (int ctr = 0; ctr < length; ctr++)
        {
            char ch = aString.charAt(ctr);
            if (Character.isLowSurrogate(ch))
            {
                continue;
            }
            else
            {
                int codePoint = aString.codePointAt(ctr);
                String hexString = Integer.toHexString(codePoint);
                String zeroPad = Character.isHighSurrogate(ch) ? "00000" : "0000";
                String padAmount = zeroPad.substring(hexString.length());
                buffer.append(" U+");
                buffer.append(padAmount);
                buffer.append(hexString);
            }
        }
        return buffer.toString();
    }
    else
    {
        return null;
    }
}

The gruntwork is done by the String.codePointAt() method which returns the Unicode codepoint at a particular index. For a String instance composed of combinational characters, the length of the String instance will not be the length of the number of visible characters, but the number of actual Unicode codepoints. For example, and combine to form क् in Devanagari, and the above function will rightfully return U+0915 U+094d without any fuss as String.length() will return 2 for the combined character. Strings with supplementary characters will be with single codepoints for the individual characters - 𝒥𝒶𝓋𝒶𝓈𝒸𝓇𝒾𝓅𝓉 (the page will not display this String literal correctly, but you can copy this just fine; it should be Javascript but written using the supplementary character set for Mathematical alphanumeric symbols) will return U+1d4a5 U+1d4b6 U+1d4cb U+1d4b6 U+1d4c8 U+1d4b8 U+1d4c7 U+1d4be U+1d4c5 U+1d4c9.

share|improve this answer
That's exactly what I need, thanks a lot. – Asterisk Aug 4 '11 at 11:47
That code is wrong! First, it won’t even compile because string should be aString in the function. Second, it has the UTF-16 bug because it forgot to do if (aString.codePointAt(ctr) > Character.MAX_VALUE) { ctr++; } // UG!. Just try it on something like "𝒥𝒶𝓋𝒶𝓈𝒸𝓇𝒾𝓅𝓉" to see what I mean. That’s the string containing the nine (but not eighteen!!) Unicode characters U+1D4A5 U+1D4B6 U+1D4CB U+1D4B6 U+1D4C8 U+1D4B8 U+1D4C7 U+1D4BE U+1D4C5 U+1D4C9. As for combining characters, Java has no proper grapheme support, so there you’re just hosed. – tchrist Aug 4 '11 at 14:33
Well done. I loathe the whole code unit thing in Java; it’s a terrible awful mess. Remember the refrain: int is the new char. We really and truly need a UString class that works correctly on Unicode code points, so length() returns their count, etc. Too bad we can’t subclass String or change the compiler’s literals. These seem unfixable, a curse. BTW, George Doursos’s Symbola font will let you see the math letters and a lot more. – tchrist Aug 4 '11 at 18:26
You can look at slide 5 on “Astral Projections” from my OSCON Unicode Support Shootout talk to see that the math letters are the most commonly occurring non-BMP codepoints (I hate the phrase “supplemental characters” in Java because it suggest they forgot some; it’s Java who forgot them and didn’t stick with the standard) in a real all-English corpus, this the PubMed Central Open Access collection. – tchrist Aug 4 '11 at 18:30
Yeah, Java needs a separate class to handle operations on codepoints, and possibly another to handle operations on linguistic characters so that even concepts like codepoints can be ignored by folks who want to work on combined characters in languages. – Vineet Reynolds Aug 4 '11 at 18:32
show 2 more comments
public static void main(String[] args) {
    Charset charset = Charset.forName("UTF-8");
    CharsetDecoder decoder = charset.newDecoder();
    CharsetEncoder encoder = charset.newEncoder();

    try {
      ByteBuffer bbuf = encoder.encode(CharBuffer.wrap("\u0421\u043b\u0443\u0436\u0435\u0431\u043d\u0430\u044f"));

      CharBuffer cbuf = decoder.decode(bbuf);
      String s = cbuf.toString();
      System.out.println(s);
    } catch (CharacterCodingException e) {
      e.printStackTrace();
    }
  }
share|improve this answer
given a string s I would like to get its encoding – Asterisk Aug 4 '11 at 10:23

I'm not aware of a build-in solution, so:

StringBuilder builder = new StringBuilder();
for(int i=0; i<yourString.length(); i++) {
    builder.append(String.format("\\u%04x", yourString.charAt(i)));
}
String encoded = builder.toString();

Edit: sry, I thought you wanted to get the String encoded to \uXXXX expressions ...

share|improve this answer

You didn't saying what encoding you are after, but based on the tag I'm assuming you want the UTF-8 encoding. Here's how:

byte[] utf8 = 
    "\u0421\u043b\u0443\u0436\u0435\u0431\u043d\u0430\u044f".getBytes("UTF-8");

You can then write a simple loop to output the bytes in utf8 in hexadecimal or decimal ... or do something else with them.

share|improve this answer
System.out.println ("\u0421\u043b\u0443\u0436\u0435\u0431\u043d\u0430\u044f");

works like a charm for me:

Служебная
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.