EN
Python - convert character to ASCII code
0
points
In this article, we would like to show you how to convert characters to ASCII code in Python.
Quick solution:
character = 'a'
unicode = ord(character)
print(unicode) # 97
Practical example
In this example, we use ord()
function to return the number representing the ASCII code of a specified character.
character = 'a'
unicode = ord(character)
print(unicode) # 97
Output:
97