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

I want to display a Unicode character in Java. If I do this, it works just fine:

String symbol = "\u2202";

symbol is equal to "∂". That's what I want.

The problem is that I know the Unicode number and need to create the Unicode symbol from that. I tried (to me) the obvious thing:

int c = 2202;
String symbol =  "\\u" + c;

However, in this case, symbol is equal to "\u2202". That's not what I want.

How can I construct the symbol if I know its Unicode number (but only at run-time---I can't hard-code it in like the first example)?

share|improve this question
Remove the first backslash, so that instead of escaping the backslash it escapes the Unicode sequence. Using "\\" tells Java that you want to print out "\", not use it as past of an escape sequence for Unicode characters. If you remove the first one then it will instead escape the Unicode sequence and not the second backslash. At least, it will to the best of my knowledge. – Nick Hartley Apr 25 at 17:52

5 Answers

up vote 4 down vote accepted

Just cast your int to a char. You can convert that to a String using Character.toString():

String s = Character.toString((char)c);

EDIT:

Just remember that the escape sequences in Java source code (the \u bits) are in HEX, so if you're trying to reproduce an escape sequence, you'll need something like int c = 0x2202.

share|improve this answer
That's just giving me a square box, ࢚. It's not giving me "∂". – Paul Reiners Apr 7 '11 at 18:54
That's probably because the console you're printing it to doesn't understand the character encoding you're writing out, or else the console font doesn't have a glyph for the character. – dty Apr 7 '11 at 19:00
But the same console is printing out "∂". – Paul Reiners Apr 7 '11 at 19:01
How are you printing the character when it works? – dty Apr 7 '11 at 19:03
1  
@NickHartley Sorry, don't follow --- did you misread 0x10000 for 10000? – David Given Apr 25 at 21:20
show 5 more comments

If you want to get a UTF-16 encoded code unit as a char, you can parse the integer and cast to it as others have suggested.

If you want to support all code points, use Character.toChars(int). This will handle cases where code points cannot fit in a single char value.

share|improve this answer

This is how you do it:

int cc = 2202;
char ccc = (char) Integer.parseInt(String.valueOf(cc), 16);
final String text = String.valueOf(ccc);

This solution is by Arne Vajhøj.

share|improve this answer
Are you saying this works? If so, this works because you're reinterpreting two-thousand, two-hundred and two as 0x2202, which is, of course, not the same thing at all. – dty Apr 7 '11 at 20:08
2  
Oh, no, hang on! The Unicode values (the \u escape sequences in Java source) ARE hex! So this is right. You just misled everyone by saying int c = 2202, which is wrong! A better solution than this is simple to say int c = 0x2202 which will save you going via a String, etc. – dty Apr 7 '11 at 20:09

Remember that char is an integral type, and thus can be given an integer value, as well as a char constant.

char c = 0x2202;//aka 8706 in decimal. \u codepoints are in hex.
String s = String.valueOf(c);
share|improve this answer
That's just giving me a square box, ࢚. It's not giving me "∂". – Paul Reiners Apr 7 '11 at 18:52
3  
That is because 2202 is not the int you were looking for. You were looking for 0x2202. My fault. In any case, if you have the int of the code point you are looking for, you can just cast it to a char, and use it (to construct a String if you wish). – ILMTitan Apr 7 '11 at 21:23

The other answers here either only support unicode up to U+FFFF (the answers dealing with just one instance of char) or don't tell how to get to the actual symbol (the answers stopping at Character.toChars() or using incorrect method after that), so adding my answer here, too.

To support supplementary code points also, this is what needs to be done:

// this character:
// http://www.isthisthingon.org/unicode/index.php?page=1F&subpage=4&glyph=1F495
// using code points here, not U+n notation
// for equivalence with U+n, below would be 0xnnnn
int codePoint = 128149;
// converting to char[] pair
char[] charPair = Character.toChars(codePoint);
// and to String, containing the character we want
String symbol = new String(charPair);

// we now have str with the desired character as the first item
// confirm that we indeed have character with code point 128149
System.out.println("First code point: " + symbol.codePointAt(0));

I also did a quick test as to which conversion methods work and which don't

int codePoint = 128149;
char[] charPair = Character.toChars(codePoint);

String str = new String(charPair, 0, 2);
System.out.println("First code point: " + str.codePointAt(0));    // 128149, worked
String str2 = charPair.toString();
System.out.println("Second code point: " + str2.codePointAt(0));  // 91, didn't work
String str3 = new String(charPair);
System.out.println("Third code point: " + str3.codePointAt(0));   // 128149, worked
String str4 = String.valueOf(code);
System.out.println("Fourth code point: " + str4.codePointAt(0));  // 49, didn't work
String str5 = new String(new int[] {codePoint}, 0, 1);
System.out.println("Fifth code point: " + str5.codePointAt(0));   // 128149, worked
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.