Free tools
Text to Hex Converter
Convert text to hexadecimal or hex to text instantly. Perfect for encoding, debugging, or working with binary data.
Press Ctrl + Enter to convert
How Hex Encoding Works
Hexadecimal (base 16) encoding converts each character to its ASCII value, then represents that value using digits 0-9 and letters A-F.
Example: Text to Hex
"Hello" → 48 65 6c 6c 6f
H=72→48, e=101→65, l=108→6c, o=111→6f
Example: Hex to Text
48656c6c6f → "Hello"
Each pair of hex digits becomes one character
Hex encoding is commonly used in programming, debugging, cryptography, and blockchain development for representing binary data in a human-readable format.