python get character pos from ascii table code example
Example: convert characters in ascii in python
# Program to find the ASCII value of the given character
c = 'A'
print("The ASCII value of '" + c + "' is", ord(c))
# Program to find the ASCII value of the given character
c = 'A'
print("The ASCII value of '" + c + "' is", ord(c))