Hex to Text Converter

Convert a hexadecimal string to text.

Text Hi

Formula: Each hex pair becomes a character

Step-by-step with your numbers:
1. Values used:
2.
3. Text = Hi
Did we solve your problem today?

Hexadecimal is a compact way to write byte values; convert it back to text.

The math behind it

Each pair of hex digits is one byte (0-255), which maps to a character.

Worked example

48 69 becomes Hi.

FAQ

Does spacing matter?

No - spaces and 0x prefixes are ignored.