Showing posts with label パーセントエンコーディング. Show all posts
Showing posts with label パーセントエンコーディング. Show all posts

Friday, March 25, 2016

Python: Converting Percent-encoded String to Multibyte String

Command:

$ python -c "import urllib, sys; print urllib.unquote(sys.argv[1])" %E7%B9%94%E7%94%B0%E4%BF%A1%E9%95%B7

Output:

織田信長

Python: Percent-encode Multibyte String

Percent-encode multibyte string:

$ python -c "import urllib, sys; print urllib.quote(sys.argv[1])" 織田信長

Output:

%E7%B9%94%E7%94%B0%E4%BF%A1%E9%95%B7