URL Decoder
Decode percent-encoded URLs back to their original readable format.
Input
Common URL Encodings
| Character | Encoded | Description |
|---|---|---|
| Space | %20 or + | Space character |
| ! | %21 | Exclamation mark |
| # | %23 | Hash/pound |
| $ | %24 | Dollar sign |
| % | %25 | Percent sign |
| & | %26 | Ampersand |
| ' | %27 | Single quote |
| + | %2B | Plus sign |
| / | %2F | Forward slash |
| = | %3D | Equals sign |
| ? | %3F | Question mark |
| @ | %40 | At symbol |