Is there a way to save a Unicode string into JSON that allows for Unicode codepoints to be replaced with their actual characters?
For instance, having a dict like this ported into JSON...:
dict1[u'N\u00e1utico'] = 2
...instead of having it dumped with the codepoint, could the key be dumped as the actual string?:
Náutico
Printing works fine for representing the characters, but saving I'm just lost on. Thanks.