show/hide this revision's text 2 added unichr

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'
show/hide this revision's text 1

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'
>>>