Text to Hex Converter

Convert text into its hexadecimal byte representation.

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

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

About Hex Encode

Hex (base-16) encoding writes each byte of your UTF-8 text as a two-character hexadecimal value from 00 to ff.

It is common in debugging, low-level protocols, color codes, and anywhere you need an unambiguous, text-safe view of raw bytes.

For example, the letter 'H' is byte 0x48, so 'Hello' becomes 48656c6c6f.

Example

InputHello
Output48656c6c6f

Use it from code

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

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

Related tools