Programming Code Center(PCC)
[PYTHON]

(PCC)::[How-to-write-Python-Program-to-Find-ASCII-Value-of-Character]::[python]

File Name : ASCII_Value_of_Character.py

# Program to find the ASCII value of the given character

c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))

Output :

ASCII_Value_of_Character.jpg