URL Encode / Decode
Encode URL parameters or decode URL-encoded strings. Supports URI component, full URI, and form data encoding with percent encoding.
Input
Output
Actions
Best for query parameters. Encodes most characters including :/?#[]@!
Features
- β URI Component encoding
- β Full URI encoding
- β Form data encoding
- β Percent encoding (%20)
- β Auto + to space conversion
- β File upload support
- β Swap input/output
What is URL Encoding?
URL encoding (percent encoding) converts special characters into a format that can be safely transmitted over the internet. Characters like spaces, &, ?, and non-ASCII characters are encoded as %XX where XX is the hexadecimal value.