python convert decimal to ascii code example Example 1: ascii to decimal python >>> ord('a') 97 >>> chr(98) 'b' Example 2: python int to ascii string chr(97) -> 'a'