转换复选标记" 02713" UNIcode签到String

时间:2017-02-08 15:04:42

标签: java string

我知道如何将简单的ASCII码号传送给String

int ascii = 112;      
String sign = Character.toString((char)ascii);

但如果我想转换复选标记怎么办呢?

http://www.fileformat.info/info/unicode/char/2713/index.htm

https://www.w3.org/TR/MathML2/isopub.html

2 个答案:

答案 0 :(得分:5)

该数字为十六进制,因此您需要

didReceiveRemoteNotification: fetchCompletionHandler:

int ascii = 0x2713;

请参阅http://www.fileformat.info/info/unicode/char/2713/index.htm

答案 1 :(得分:5)

您可以在字符串文字中编写四位十六进制代码,前缀为Start()

\u

或者,确实只是直接在String中使用该字符,因为Java源代码被解释为as unicode

"\u2713"