如何在lua中编写Unicode符号.例如,我必须用9658写符号 我写的时候 string.char( 9658 ); 我收到了一个错误.那么如何编写这样的符号呢? Lua不看内部字符串.所以,你可以写 mychar = "►" (2015年新增
我写的时候
string.char( 9658 );
我收到了一个错误.那么如何编写这样的符号呢?
Lua不看内部字符串.所以,你可以写mychar = "►"
(2015年新增)
Lua 5.3引入了对UTF-8转义序列的支持:
The UTF-8 encoding of a Unicode character can be inserted in a literal string with the escape sequence \u{XXX} (note the mandatory enclosing brackets), where XXX is a sequence of one or more hexadecimal digits representing the character code point.
你也可以使用utf8.char(9658).