URL Encoder / Decoder
All computation runs locally in your browser. Nothing is uploaded to any server.
URL Encoder / Decoder
Percent-encode and decode URL components, query strings, or full URLs. Auto-detects already-encoded input.
| key | value | encoded |
|---|
Why did ? become %3F?
Encoding rules (RFC 3986)
| Unreserved | A-Z a-z 0-9 - _ . ~ | Unreserved (kept as-is): A-Z a-z 0-9 - _ . ~ |
| Reserved | ! * ' ( ) ; : @ & = + $ , / ? # [ ] | Reserved: ! * ' ( ) ; : @ & = + $ , / ? # [ ] — encoded in component mode |
| Always encode | space → %20 | Always encode (in component mode): space → %20, plus all reserved characters |