# Get the ASCII number of a character
number = ord(char)

# Get the character given by an ASCII number
char = chr(number)
