ASCII-naar-hexadecimaal-converter
Zet tekst om naar hexadecimale ASCII-codes en omgekeerd. Elk teken wordt omgezet in zijn hexadecimale waarde van 2 cijfers.
Hoe u deze tool gebruikt
- 1
Pick a direction from the dropdown: 'Text -> Hex' to encode, or 'Hex -> Text' to decode.
- 2
Type or paste your input into the text box.
- 3
Read the converted result in the output box below — it updates live as you type.
- 4
For decoding, separate each hex value with a space (for example '48 65 6C 6C 6F').
Wat is de ASCII-naar-hexadecimaal-converter?
Elk teken in uw tekst komt overeen met een getal (ASCII voor het basis-Latijn, Unicode-codepunten voor al het overige). Hexadecimaal is de compacte manier om die getallen weer te geven: 'A' is 65 in decimaal, 41 in hexadecimaal. Deze conversie is handig voor het debuggen van problemen met tekstcodering, het werken met binaire protocollen of het opbouwen van escape-reeksen.
Veelvoorkomende toepassingen
Inspecting invisible control characters (tabs, newlines, non-breaking spaces) that are breaking a parser or CSV import.
Hand-building escape sequences like \x41 for code, regex, or shell snippets.
Decoding a space-separated hex dump pasted from a log, packet capture, or protocol trace back into readable text.
Teaching or learning how characters map to numeric codes and base-16 notation.
Quickly checking the hex code of a specific symbol before hard-coding it into a config or test fixture.
Spotting smart quotes or homoglyphs by confirming whether a character is the plain ASCII version or a higher code point.
Gerelateerde tools
JSON-naar-CSV-converter
Zet een JSON-array van objecten om naar CSV-formaat. Perfect voor het exporteren van API-gegevens naar spreadsheets.
CSV-naar-JSON-converter
Zet CSV-gegevens om in een JSON-array van objecten. De eerste rij wordt behandeld als koptekst.
CSV naar SQL INSERT
Genereer SQL INSERT-instructies op basis van CSV-gegevens. Handig voor het importeren van CSV-exports in databases.
Binair-naar-hexadecimaal-converter
Zet binaire getallen om naar hexadecimaal. Hexadecimaal is voor dezelfde waarde 4 keer compacter dan binair.
Hexadecimaal-naar-binair-converter
Zet hexadecimale getallen om naar binair. Elk hexadecimaal cijfer wordt precies uitgebreid tot 4 binaire cijfers.
Decimaal-naar-binair-converter
Converteer decimale getallen naar binair, hexadecimaal en octaal, alle talstelsels tegelijk.