如何在haxe中使用unicode?

时间:2014-01-17 16:37:03

标签: haxe

如何在haxe 3中使用unicode字符?

我试过这个例子:

trace("Haxe is great :)"+"\u0600");

但是,它不起作用,我收到这个错误:

character 29 : Invalid escape sequence

那么,我该如何添加unicode字符串? 这是在哪里尝试:http://try.haxe.org/#be311

2 个答案:

答案 0 :(得分:4)

为什么不粘贴unicode字符?它似乎对我有用

看看这个http://try.haxe.org/#38E77

编辑:相关代码,以防try.haxe停止工作:

trace("Haxe is great :)"+"本");

答案 1 :(得分:3)

你应该能够只使用角色本身:

trace("Haxe is great :) ␆" );

但是否可行取决于您的使用情况。