Developer
URL Encoder Decoder
Safely convert text for use in URL query strings, and decode encoded query values back to readable text.
Features
- Uses query-string safe escaping.
- Supports decoding percent-encoded text.
- Useful for API debugging and link construction.
Use Cases
- Prepare query parameters.
- Read encoded redirect URLs.
- Debug copied links.
Examples
Encode query text
hello world
hello+world
FAQ
Does it encode a full URL?
This first version focuses on query-string values. Full URL parsing can be added as a separate tool.
Are spaces encoded as plus signs?
Yes. Query escaping encodes spaces as plus signs.