Welcome, guest | Sign In | My Account | Store | Cart
# Get the ASCII number of a character
number = ord(char)

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

History