Skip to content

Instantly share code, notes, and snippets.

@erikrose
Created June 18, 2013 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikrose/5809101 to your computer and use it in GitHub Desktop.
Save erikrose/5809101 to your computer and use it in GitHub Desktop.
>>> from json import dumps
>>> u = u'jörg'
>>> e = u.encode('utf-8')
>>> dumps(u)
'"j\\u00f6rg"'
>>> dumps(e)
'"j\\u00f6rg"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment