ASCII value of a character in python - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T17:04:30Zhttp://stackoverflow.com/feeds/question/227459http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/227459/ascii-value-of-a-character-in-python13ASCII value of a character in pythonMatt2008-10-22T20:39:57Z2009-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#2274664Answer by Jacob for ASCII value of a character in pythonJacob2008-10-22T20:41:56Z2008-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#22747226Answer by Matt J for ASCII value of a character in pythonMatt J2008-10-22T20:43:04Z2009-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>>>> ord('a')
97
>>> chr(97)
'a'
>>> chr(ord('a') + 3)
'd'
>>>
</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>>>> unichr(97)
u'a'
>>> unichr(1234)
u'\u04d2'
</code></pre>
http://stackoverflow.com/questions/227459/ascii-value-of-a-character-in-python/227889#22788912Answer by Ignacio Vazquez-Abrams for ASCII value of a character in pythonIgnacio Vazquez-Abrams2008-10-22T23:19:20Z2008-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>>>> ord(u'あ')
12354
</code></pre>