URL Decoder Online

Decode percent-encoded URL text back to plain text.

Get this result as JSON (developer API)
curl "https://encode.wrapper-agency.com/api/v1/encode?op=url-decode&value=name%253DJohn%2520Doe%2520%2526%2520city%253DS%25C3%25A3o%2520Paulo"

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

About URL Decode

URL decoding reverses percent-encoding, converting sequences like %20 back into spaces and %C3%A9 back into é.

It mirrors JavaScript's decodeURIComponent. Use it to read raw query strings, logged URLs, or webhook payloads in a human-friendly form.

Malformed percent sequences (for example a lone % not followed by two hex digits) produce a clear error.

Example

Inputname%3DJohn%20Doe%20%26%20city%3DS%C3%A3o%20Paulo
Outputname=John Doe & city=São Paulo

Use it from code

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

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

Related tools