I have a hex string like:
data = \"437c2123\"
I want to convert this string to a sequence of characters according to the ASCII table. The
The ord function converts characters to numerical values and the chr function does the inverse. So to convert 97 to "a", do ord(97)
ord
chr
97
"a"
ord(97)