Hex to Text Converter

Convert a hexadecimal string back to readable text.

Get this result as JSON (developer API)
curl "https://encode.wrapper-agency.com/api/v1/encode?op=hex-decode&value=48656c6c6f"

Free encode/decode/hash API — no key during beta. Everything is computed locally; nothing you enter is stored.

About Hex Decode

Hex decoding reads pairs of hexadecimal digits, turns each pair into a byte, and interprets the result as UTF-8 text.

Whitespace between byte pairs is ignored, so '48 65 6c 6c 6f' and '48656c6c6f' both decode to 'Hello'.

An odd number of hex digits or a non-hex character produces a clear error.

Example

Input48656c6c6f
OutputHello

Use it from code

curl "https://encode.wrapper-agency.com/api/v1/encode?op=hex-decode&value=YOUR_TEXT"

Free during beta — no key. See the full API reference.

Related tools