ASCII value of a character in python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T17:04:30Z http://stackoverflow.com/feeds/question/227459 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/227459/ascii-value-of-a-character-in-python 13 ASCII value of a character in python Matt 2008-10-22T20:39:57Z 2009-01-10T01:54:42Z <p>How do I get the ASCII value of a character as an int in python?</p> http://stackoverflow.com/questions/227459/ascii-value-of-a-character-in-python/227466#227466 4 Answer by Jacob for ASCII value of a character in python Jacob 2008-10-22T20:41:56Z 2008-10-22T20:41:56Z <p>You are looking for:</p> <pre><code>ord() </code></pre> http://stackoverflow.com/questions/227459/ascii-value-of-a-character-in-python/227472#227472 26 Answer by Matt J for ASCII value of a character in python Matt J 2008-10-22T20:43:04Z 2009-01-10T01:54:42Z <p>From <a href="http://mail.python.org/pipermail/python-win32/2005-April/003100.html" rel="nofollow">here</a>:</p> <blockquote> <p>function ord() would get the int value of the char. and in case you want to convert back after playing with the number, function chr() does the trick</p> </blockquote> <pre><code>&gt;&gt;&gt; ord('a') 97 &gt;&gt;&gt; chr(97) 'a' &gt;&gt;&gt; chr(ord('a') + 3) 'd' &gt;&gt;&gt; </code></pre> <p>There is also a <code>unichr</code> function, returning the Unicode character whose ordinal is the <code>unichr</code> argument:</p> <pre><code>&gt;&gt;&gt; unichr(97) u'a' &gt;&gt;&gt; unichr(1234) u'\u04d2' </code></pre> http://stackoverflow.com/questions/227459/ascii-value-of-a-character-in-python/227889#227889 12 Answer by Ignacio Vazquez-Abrams for ASCII value of a character in python Ignacio Vazquez-Abrams 2008-10-22T23:19:20Z 2008-10-22T23:19:20Z <p>Note that ord() doesn't give you the ASCII value per se; it gives you the numeric value of the character in whatever encoding it's in. Therefore the result of ord('ä') can be 228 if you're using Latin-1, or it can raise a TypeError if you're using UTF-8. It can even return the Unicode codepoint instead if you pass it a unicode:</p> <pre><code>&gt;&gt;&gt; ord(u'あ') 12354 </code></pre>