URL Decode "%2Fpath%2Fto%2Ffile"
Encoded
%2Fpath%2Fto%2Ffile
URL Decoded
/path/to/file
"%2Fpath%2Fto%2Ffile" decoded is: "/path/to/file"
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. "%2Fpath%2Fto%2Ffile" becomes "/path/to/file".
Try the URL encoder
Loading tool...