Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
中国語の文字は、次のような形式にエスケープされることがあります。
%B9%F3%D6%DD%C3%A9%CC%A8
これらを Python で読みやすい漢字に変換するにはどうすればよいですか?
You can use urllib2.unquote like this:
urllib2.unquote
>>> import urllib2 >>> print urllib2.unquote('%B9%F3%D6%DD%C3%A9%CC%A8').decode('gbk') 贵州茅台
これを試して、
urllib.unquote(your_string).decode(your_encoding)