URL Encoder / Decoder - Percent Escaping Made Clear
Escape query parameters or whole URLs, and decode percent-encoded strings back to readable text.
Two Modes, Zero Guessing
AiLoveKit's URL encoder / decoder offers both escaping levels: component mode (encodeURIComponent) for individual query values where &, =, and ? must all be escaped, and full-URL mode (encodeURI) that keeps the structure of a complete address intact. Decoding works the same way in reverse.
Which Mode to Use
- Component - encoding a search term, name, or any single parameter value.
- Full URL - encoding a complete address while keeping ://, ?, and & intact.
- Debugging - decode mystery %2F%20 soup from logs and redirect chains.