URL Decoder
Decode URL-encoded strings back to their original format.
0 chars
Result
Original Length:
-
Result Length:
-
Difference:
-
Error
What is URL Decoding?
URL decoding, also known as percent-decoding, is the reverse process of URL encoding. It converts encoded characters (like %20 for a space or %2F for a forward slash) back into their original format. This is essential for reading data that has been passed through a URL or in a form submission.
Instant Result
Get your decoded string instantly with server-side processing.
Secure
Processing is handled safely. We do not store your data.
RFC 3986
Fully compliant with the standard URL encoding/decoding rules.
Common Encoded Characters
| Character | Encoded | Description |
|---|---|---|
| (space) | %20 | Space character |
| / | %2F | Forward slash |
| : | %3A | Colon |
| & | %26 | Ampersand |