Convert from Hexadecimal to Text

Convert from Hexadecimal to Text

The relationship between ASCII encoded text and the hex value of the characters is described in the ASCII table. It descripes the mapping between each character and a 7 bit value, with will be converted to hex.

Example: 0x4d => text
4 * 16^1 + D * 16^0 =
4 * 16 + 13 * 1 =
64 + 13 =
77 (= 0x4d)
=> M (with ASCII Table)