Skip Navigation

ASCII text to hex converter

From
To
Input
Encoding
Output

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:

Example: Convert 'Hi' to hex:

H=48, i=69 → 48 69



See also