URL Encoder / Decoder
Encode and decode URL strings. Percent-encoding for special characters. Useful for query strings and URLs.
Output:
What is URL Encoding?
URL encoding (percent-encoding) converts special characters in a URL into a format that can be safely transmitted. Characters like spaces, ampersands (&), and non-ASCII symbols are replaced with % followed by their hexadecimal value.
What is it used for?
- Query strings: Encode parameters in URLs (e.g.
?q=hello+world) - API requests: Safely pass special characters in GET parameters
- Form data: Encode form values for URL submission
- Links: Create valid URLs with special characters
How it works
Encode converts characters to %XX format (e.g. space β %20). Decode reverses this. All processing happens in your browserβno data is sent to any server.
Related Tools
Base64 to Text
Decode Base64 to plain text effortlessly. Free online tool for instant Base64 decoding, supporting various character sets. Paste your Base64 string and get readable text.
Text to Base64
Encode plain text to Base64 format quickly and securely. Free online Base64 encoder for developers and data processing. Supports UTF-8 and other encodings.
HTML Entity Encoder/Decoder
Encode and decode HTML entities like & < >. Free online HTML entity converter.