Developer tool

URL Decode

Decode percent-encoded text back into readable form.

Input

Output

Ready.

Related developer tools

FAQ

Why does URL decoding sometimes throw an error?

The input may contain incomplete percent sequences (like %2) or invalid hex values.

Does URL decode also convert + to space?

This tool uses decodeURIComponent. If your input uses + for spaces, replace + with %20 first.

Is my input uploaded?

No. Decoding runs locally in your browser.