How to write unicode cross symbol in Java?

白昼怎懂夜的黑 提交于 2019-11-30 00:43:21

You're looking for U+10035, which is outside the Basic Multilingual Plane. That means you can't use \u to specify the value, as that only deals with U+0000 to U+FFFF - there are always exactly four hex digits after \u. So currently you've got U+1003 ("MYANMAR LETTER GHA") followed by '5'.

Unfortunately Java doesn't provide a string literal form which makes characters outside the BMP simple to express. The only way of including it in a literal (but still in ASCII) is to use the UTF-16 surrogate pair form:

String cross = "\ud800\udc35";

Alternatively, you could use the 32-bit code point form as an int:

String cross = new String(new int[] { 0x10035 }, 0, 1);

(These two strings are equal.)

Having said all that, your console would still need to support that character - you'll need to try it to find out whether or not it does.

I believe Java represents Unicode characters from 0x0000 to 0xFFFF. Java would evaluate "\u10035" to whatever "\u1003" is and a 5 after that.

0x10035 is a supplemental Unicode character. You'll need to font that supports it if you want your program to render it.

http://www.oracle.com/technetwork/articles/javase/supplementary-142654.html

Unicode escapes are 4 characters long. You are printing \u1003 followed by '5'. Are you sure you have the right code point?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!