python的simplejson中的Json unicode解码
我无法像这样解码 json 字符串: "\u0e4f\u0361\u032f\u0e4f"
>>> import simplejson
>>> simplejson.loads('"\u0e4f\u0361\u032f\u0e4f"', encoding='utf8')
u'\u0e4f\u0361\u032f\u0e4f'
但是 php json_decode 工作正常:
json_decode('"\u0e4f\u0361\u032f\u0e4f"');
我做错了什么?
I can't decode json strings like this: "\u0e4f\u0361\u032f\u0e4f"
>>> import simplejson
>>> simplejson.loads('"\u0e4f\u0361\u032f\u0e4f"', encoding='utf8')
u'\u0e4f\u0361\u032f\u0e4f'
However php json_decode works fine:
json_decode('"\u0e4f\u0361\u032f\u0e4f"');
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有什么。 Python REPL 打印字符串的 repr(),而不是字符串本身。
Nothing. The Python REPL prints the repr() of the string, not the string itself.