up vote 78 down vote favorite
18
share [g+] share [fb]

How do I get the ASCII value of a character as an int in python?

link|improve this question

feedback

3 Answers

up vote 95 down vote accepted

From here:

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

>>> ord('a')
97
>>> chr(97)
'a'
>>> chr(ord('a') + 3)
'd'
>>>

There is also a unichr function, returning the Unicode character whose ordinal is the unichr argument:

>>> unichr(97)
u'a'
>>> unichr(1234)
u'\u04d2'
link|improve this answer
which encoding in chr using ? – njzk2 Dec 14 '11 at 8:59
feedback

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:

>>> ord(u'あ')
12354
link|improve this answer
feedback

You are looking for:

ord()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.