I'm trying to output some UTF-8 characters to a JSON file.
When I save the file they're being written like this:
{"some_key": "Enviar invitaci\u00f3n privada"}
The above is valid and works. When I load the file and print 'some_key' it displays "Enviar invitación privada" in the terminal.
Is there anyway to write the JSON file with "some_key" as the encoded version, like this?
{"some_key": "Enviar invitación privada"}
Set
ensure_ascii
toFalse
:Using Python 3.4.3 here and using
dump()
instead ofdumps()
:is the standard way to write JSON to an UTF-8 encoded file.
If you want the escaped code points instead of the characters in your file, set
ensure_ascii=True
. This writes for example the Euro-character€
as\u20ac
directly to your file.