You are on page 1of 1

# Program to find the ASCII value of a character

ch = input("Enter any character: ")

print("The ASCII value of char " + ch + " is: ",ord(ch))

You might also like