Each ASCII character is one byte. In hexadecimal a byte is two digits, so 48 65 78 decodes as 0x48 = 72 = H, 0x65 = 101 = e, 0x78 = 120 = x → "Hex". To convert by hand: split the hex string into pairs, convert each pair to decimal, then look each code up in the ASCII table.