URL Encoder & Decoder
Encode and decode URLs instantly — convert special characters to percent-encoding and back
URL Encoder / Decoder
Enter text or a URL to encode or decode it. Use batch mode to process multiple entries at once.
0 characters
Tool Features
Fast, private URL encoding and decoding
URL Encoding
Encode special characters to make URLs safe for transmission
URL Decoding
Decode percent-encoded URLs back to readable text
Batch Processing
Process multiple URLs at once, one per line
Two Encode Modes
encodeURIComponent (all) or encodeURI (path-safe) modes
Common URL Encoding Reference
| Character | Encoded | Note |
|---|---|---|
| %20 | Space | |
| ! | %21 | |
| " | %22 | |
| # | %23 | |
| $ | %24 | |
| % | %25 | |
| & | %26 | |
| ' | %27 | |
| + | %2B | |
| , | %2C | |
| / | %2F | Path separator |
| : | %3A | Protocol separator |
| = | %3D | Query separator |
| ? | %3F | Query start |
| @ | %40 | |
| [ | %5B | |
| ] | %5D |