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.
- Split into pairsSplit the hex into pairs of digits, one byte per character.
- Read each byte as a numberConvert each group to its value from 0 to 255.
- 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.
| Hexadecimal | Text |
|---|---|
| 41 | A |
| 42 | B |
| 43 | C |
| 61 | a |
| 62 | b |
| 63 | c |
| 30 | 0 |
| 31 | 1 |
| 39 | 9 |
| 21 | ! |
| 3F | ? |
| 40 | @ |
Related conversions
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.