python的simplejson中的Json unicode解码

发布于 2024-09-01 10:43:14 字数 332 浏览 4 评论 0原文

我无法像这样解码 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

芯好空 2024-09-08 10:43:14

没有什么。 Python REPL 打印字符串的 repr(),而不是字符串本身。

>>> print u'\u0e4f\u0361\u032f\u0e4f'
๏̯͡๏

Nothing. The Python REPL prints the repr() of the string, not the string itself.

>>> print u'\u0e4f\u0361\u032f\u0e4f'
๏̯͡๏
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文