Skip Navigation

Hex to ASCII text converter

From
To
Input
Encoding
Output

How to convert Hex to ASCII text

Each 2-digit hex value maps to one ASCII character.

2-digit hex → decimal → ASCII char

Convert each 2-digit hex group to decimal, then to ASCII:

Example: Convert 48 69 to ASCII:

48=H, 69=i → 'Hi'



See also