将中文转换为unicode

时间:2016-06-02 12:27:31

标签: unicode encode chinese-locale jsonnet

我使用jsonnet工具转换json

 "{a:\"李\"}" 

结果是

{
   "name": "\u00c0\u00ee"
}

为什么中文转换为两个Unicode?

1 个答案:

答案 0 :(得分:1)

它对我有用。我怀疑你没有给Jsonnet UTF-8(这是必需的)。您可以使用iconv将文本数据转换为UTF-8。

$ jsonnet -e  "{a:\"李\"}" 
{
   "a": "李"
}