Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 jsonnet 工具来转换 json
"{a:\"李\"}"
结果是
{ "name": "\u00c0\u00ee" }
为什么中文要转换成两个Unicode?</p>
这个对我有用。我怀疑您没有提供 Jsonnet UTF-8(这是必需的)。您可以使用 iconv 将文本数据转换为 UTF-8。
$ jsonnet -e "{a:\"李\"}" { "a": "李" }