How do I treat an ASCII string as unicode and unescape the escaped characters in it in python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T20:48:59Z http://stackoverflow.com/feeds/question/267436 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/267436/how-do-i-treat-an-ascii-string-as-unicode-and-unescape-the-escaped-characters-in 4 How do I treat an ASCII string as unicode and unescape the escaped characters in it in python? John 2008-11-06T01:55:40Z 2009-11-17T18:14:37Z <p>For example, if I have a <em>unicode</em> string, I can encode it as an <em>ASCII</em> string like so:</p> <pre><code>&gt;&gt;&gt; u'\u003cfoo/\u003e'.encode('ascii') '&lt;foo/&gt;' </code></pre> <p>However, I have e.g. this <em>ASCII</em> string:</p> <pre><code>'\u003foo\u003e' </code></pre> <p>... that I want to turn into the same <em>ASCII</em> string as in my first example above:</p> <pre><code>'&lt;foo/&gt;' </code></pre> http://stackoverflow.com/questions/267436/how-do-i-treat-an-ascii-string-as-unicode-and-unescape-the-escaped-characters-in/267444#267444 0 Answer by Ned Batchelder for How do I treat an ASCII string as unicode and unescape the escaped characters in it in python? Ned Batchelder 2008-11-06T02:01:12Z 2008-11-06T02:01:12Z <p>It's a little dangerous depending on where the string is coming from, but how about:</p> <pre><code>&gt;&gt;&gt; s = '\u003cfoo\u003e' &gt;&gt;&gt; eval('u"'+s.replace('"', r'\"')+'"').encode('ascii') '&lt;foo&gt;' </code></pre> http://stackoverflow.com/questions/267436/how-do-i-treat-an-ascii-string-as-unicode-and-unescape-the-escaped-characters-in/267475#267475 8 Answer by hark for How do I treat an ASCII string as unicode and unescape the escaped characters in it in python? hark 2008-11-06T02:26:05Z 2008-11-06T03:33:54Z <p>It took me a while to figure this one out, but <a href="http://www.egenix.com/www2002/python/unicode-proposal.txt" rel="nofollow">this page</a> had the best answer:</p> <pre><code>&gt;&gt;&gt; s = '\u003cfoo/\u003e' &gt;&gt;&gt; s.decode( 'unicode-escape' ) u'&lt;foo/&gt;' &gt;&gt;&gt; s.decode( 'unicode-escape' ).encode( 'ascii' ) '&lt;foo/&gt;' </code></pre> <p>There's also a 'raw-unicode-escape' codec to handle the other way to specify Unicode strings -- check the "Unicode Constructors" section of the linked page for more details (since I'm not that Unicode-saavy).</p> <p>EDIT: See also <a href="http://www.python.org/doc/2.5.2/lib/standard-encodings.html" rel="nofollow">Python Standard Encodings</a>.</p> http://stackoverflow.com/questions/267436/how-do-i-treat-an-ascii-string-as-unicode-and-unescape-the-escaped-characters-in/1750741#1750741 0 Answer by Kaniabi for How do I treat an ASCII string as unicode and unescape the escaped characters in it in python? Kaniabi 2009-11-17T18:14:37Z 2009-11-17T18:14:37Z <p>On Python 2.5 the correct encoding is "unicode_escape", not "unicode-escape" (note the underscore).</p> <p>I'm not sure if the newer version of Python changed the unicode name, but here only worked with the underscore. </p> <p>Anyway, this is it.</p>