Python program to display ASCII value of the character

Amansingh Javatpoint
1 min readMar 12, 2021

--

Python program to display ASCII value of the character

The full form of ASCII is American Standard Code for Information Interchange. This example explains a program in Python to find the ASCII value of any input character. ASCII is a character encoding standard that specifies a numerical value for all characters and symbols used in computers.

We can convert the ASCII value of any character by using an inbuilt function ord(). This function converts the given character and returns an integer representing the Unicode code of the character. For example, ord(‘b’) returns the integer 98.

--

--