BinaryConverter

Hex to Text Converter

Convert hexadecimal to text instantly — type on the left and the result appears on the right. Everything runs in your browser, nothing is uploaded.

How to convert hex to text

Hex is a compact way to write the bytes that make up text — two hex digits per character. Read the hex in pairs and turn each pair into its character.

Method: one byte per character, using the ASCII code that maps numbers to characters.

  1. Split into pairsSplit the hex into pairs of digits, one byte per character.
  2. Read each byte as a numberConvert each group to its value from 0 to 255.
  3. Look up the characterFind the ASCII character for each number and read them in order.

Examples 48 69 = Hi41 = A

Hex to Text Table

Common hexadecimal values with their text equivalents.

Hex to Text conversion table
HexadecimalText
41A
42B
43C
61a
62b
63c
300
311
399
21!
3F?
40@

Frequently asked questions

How do you convert hex to text?

Split the hex into pairs, read each pair as a number 0–255, then look up the ASCII character. 48 = 72 = 'H'.

What is 48 in text?

Hex 48 is the letter H (ASCII 72).

Is hex to text the same as hex to ASCII?

For standard characters, yes — each byte maps to an ASCII character.