Hex-zu-Text-Konverter
Wandelt Text in Hexadezimalcode um, oder decodiert Hexadezimalcode zurück in lesbaren Text.
What is a Hex-zu-Text-Konverter?
Converts text to its byte-level hexadecimal representation (UTF-8 encoded, two hex digits per byte) or decodes a hex string back into text — useful for reading raw hex dumps, debugging encoding issues, or working with binary-adjacent data in a text format.
How to use the Hex-zu-Text-Konverter
- Type text or paste hex bytes
- Pick a direction
- The converted result appears instantly, on your device
Example
"Hi!" encodes to "48 69 21" — the hex byte values for H, i, and !.
Frequently asked questions
Does the hex input need a 0x prefix on each byte?
No — plain hex digits like "48 69 21" work fine. If your input already has 0x prefixes or extra spacing, those are stripped automatically before decoding.
Is my text uploaded anywhere?
No — Hex-zu-Text-Konverter runs entirely in your browser using JavaScript/WebAssembly. Your text is never sent to a server.
What happens if I paste an odd number of hex digits?
It's reported as invalid — each byte needs exactly two hex digits, so an odd-length string is missing or has an extra digit somewhere and can't decode reliably.