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"
|
|
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.
The above produces output as dictated by the Java Language Specification on Unicode escapes, i.e. it produces output of the form The originally posted code has been modified to produce Unicode codepoints in the format
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, |
|||||||||||
|
|
|||
|
|
|
I'm not aware of a build-in solution, so:
Edit: sry, I thought you wanted to get the String encoded to \uXXXX expressions ... |
||||
|
|
|
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:
You can then write a simple loop to output the bytes in |
|||
|
|
works like a charm for me:
|
|||
|
|