URL Decode "https%3A%2F%2Fexample.com"
Encoded
https%3A%2F%2Fexample.com
URL Decoded
https://example.com
"https%3A%2F%2Fexample.com" decoded is: "https://example.com"
Common URL-encoded characters
| Character | Encoded | Name |
|---|---|---|
| %20 | space | |
| / | %2F | slash |
| ? | %3F | question mark |
| = | %3D | equals |
| & | %26 | ampersand |
| @ | %40 | at sign |
| # | %23 | hash |
| + | %2B | plus |
| % | %25 | percent |
How URL encoding works
URL decoding converts percent-encoded characters back to their original form. "https%3A%2F%2Fexample.com" becomes "https://example.com".
Try the URL encoder
Loading tool...