Converting text to ASCII and ASCII to text can be done with ease by python.
Conversion from Text (single character) to ASCII can be done by ord() function and the reverse by chr() function
Example:
>>> ord("A")
65
>>> chr(65)
'A'
>>> ord(":")
58
>>> chr(77)
'M'
Conversion from Text (single character) to ASCII can be done by ord() function and the reverse by chr() function
Example:
>>> ord("A")
65
>>> chr(65)
'A'
>>> ord(":")
58
>>> chr(77)
'M'