ASCII text to hex converter
How to convert ASCII text to Hex
Each ASCII character maps to a 2-digit hexadecimal code.
char → ASCII code → hex
Convert each character to its ASCII code, then to hex:
'H' = 72 = 48₁₆, 'i' = 105 = 69₁₆
Example
Convert 'Hi' to hex:
H=48, i=69 → 48 69