Unicode values in strings are escaped when dumping to JSON in Python [duplicate]

Pass the ensure_ascii=False argument to json.dumps:

>>> print(json.dumps('růže', ensure_ascii=False))
"růže"

Leave a Comment