Skip to content

Instantly share code, notes, and snippets.

@notmyname
Created February 26, 2015 22:35
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 notmyname/10f9dc38f6c1057ad8eb to your computer and use it in GitHub Desktop.
Save notmyname/10f9dc38f6c1057ad8eb to your computer and use it in GitHub Desktop.
john  europa  ~  $  python
Python 2.7.6 (default, Sep 9 2014, 15:04:36)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> f = u'\u2603'
>>> print f
>>> f.encode('utf8')
'\xe2\x98\x83'
>>> import urllib
>>> urllib.quote(f.encode('utf8'))
'%E2%98%83'
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment