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.com2009-12-09T20:48:59Zhttp://stackoverflow.com/feeds/question/267436http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/267436/how-do-i-treat-an-ascii-string-as-unicode-and-unescape-the-escaped-characters-in4How do I treat an ASCII string as unicode and unescape the escaped characters in it in python?John2008-11-06T01:55:40Z2009-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>>>> u'\u003cfoo/\u003e'.encode('ascii')
'<foo/>'
</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>'<foo/>'
</code></pre>
http://stackoverflow.com/questions/267436/how-do-i-treat-an-ascii-string-as-unicode-and-unescape-the-escaped-characters-in/267444#2674440Answer by Ned Batchelder for How do I treat an ASCII string as unicode and unescape the escaped characters in it in python?Ned Batchelder2008-11-06T02:01:12Z2008-11-06T02:01:12Z<p>It's a little dangerous depending on where the string is coming from, but how about:</p>
<pre><code>>>> s = '\u003cfoo\u003e'
>>> eval('u"'+s.replace('"', r'\"')+'"').encode('ascii')
'<foo>'
</code></pre>
http://stackoverflow.com/questions/267436/how-do-i-treat-an-ascii-string-as-unicode-and-unescape-the-escaped-characters-in/267475#2674758Answer by hark for How do I treat an ASCII string as unicode and unescape the escaped characters in it in python?hark2008-11-06T02:26:05Z2008-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>>>> s = '\u003cfoo/\u003e'
>>> s.decode( 'unicode-escape' )
u'<foo/>'
>>> s.decode( 'unicode-escape' ).encode( 'ascii' )
'<foo/>'
</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#17507410Answer by Kaniabi for How do I treat an ASCII string as unicode and unescape the escaped characters in it in python?Kaniabi2009-11-17T18:14:37Z2009-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>