URL Decode
Decode Percent-Encoded URLs and Query Strings
Input + output
%3Fmy%3Dexample%26query%3Dstring
About URL Decoding
URL decoding converts percent-encoded text back to readable characters. It is commonly used when reviewing query parameters, debugging API requests, or inspecting log output.
What Is URL Decoding?
URL decoding is the reverse of percent-encoding. It converts sequences like %20 back into their original characters so the URL is readable and easier to interpret.
How to Decode a URL
Use the decoder with these steps:
- Paste the percent-encoded text into the input editor.
- Click "URL Decode".
- Copy the decoded output on the right.
When URL Decoding Helps
URL decoding is useful when you need to:
- Inspect query strings returned by web apps.
- Verify API requests and responses.
- Restore readable text from URL-encoded logs.
Common Encoded Characters and Their Decoded Values
Here are some common encoded characters and what they represent:
| Encoded Value | Character |
|---|---|
| %20 | Space |
| %22 | " |
| %23 | # |
| %25 | % |
| %26 | & |
| %2B | + |
| %3F | ? |
Learn More About URL Decoding
References for percent-encoding and URL syntax:
EO
Created by the Encrypt-Online Team, we're dedicated to providing reliable and easy-to-use web tools. Learn more about us on our About Us page.