Convert hexadecimal strings to readable text and encode text to hexadecimal. Decode hex dumps from network analysis, memory dumps, and encoded data.
Hexadecimal (base-16) uses digits 0-9 and letters A-F to represent values. Each hex digit represents 4 binary bits, making hex a compact way to represent binary data. Two hex digits represent one byte (8 bits), so the text "Hi" becomes "48 69" in hex.
The hex-to-text converter accepts hex strings in various formats: space-separated (48 65 6C), continuous (48656C), 0x-prefixed (0x48 0x65), colon-separated (48:65:6C), and comma-separated.