URL Encoder
Encode and decode URLs, query strings, and special characters. Supports encodeURI, encodeURIComponent, full decode, and URL breakdown analysis.
🔗 Input
0 characters
0 encoded chars
0 spaces
⚙️ Encoding Options
0
Input Chars
0
Output Chars
0
Encoded Sequences
—
Operation
📋 Output
🔍 URL Breakdown
📖 Common Encodings Reference
| Character | Encoded | Description |
|---|---|---|
| Space | %20 or + | Whitespace |
| ! | %21 | Exclamation |
| # | %23 | Hash / Fragment |
| & | %26 | Ampersand / Query separator |
| ' | %27 | Single quote |
| ( | %28 | Open parenthesis |
| ) | %29 | Close parenthesis |
| + | %2B | Plus sign |
| , | %2C | Comma |
| / | %2F | Slash / Path separator |
| : | %3A | Colon |
| = | %3D | Equals / Key-value separator |
| ? | %3F | Question mark / Query start |
| @ | %40 | At sign |
💡 encodeURIComponent encodes all special chars (for query values). encodeURI keeps URL-structural chars like / : ? # intact.
