URL Decode "hello%20world"
Encoded
hello%20world
URL Decoded
hello world
"hello%20world" decoded is: "hello world"
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. "hello%20world" becomes "hello world".
Try the URL encoder
Loading tool...