python json.dumps返回unicode

Posted halili

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python json.dumps返回unicode相关的知识,希望对你有一定的参考价值。

问题:

  

json.dumps(dict)
# "a": "\u4e2d\u56fd"

 

解决方法:

 

json.dumps(dic,ensure_ascii=False)

 或

json.dumps(dic,ensure_ascii=False).decode("utf-8").encode("gb2312")

 

以上是关于python json.dumps返回unicode的主要内容,如果未能解决你的问题,请参考以下文章

python在mysql数据库中执行插入操作,插入json.dumps后的包含中文的json对象,数据库中文显示为Unicode

json.dumps()包装中文字符串

python2下解决json的unicode编码问题

python json.dumps() 中文乱码问题

Python json unicode转中文

python json unicode utf-8处理总结