URL Encoder/Decoder
Encode and decode URLs, query strings, and components. Parse URLs into parts.
Result
encodeURIComponent escapes all reserved characters and is correct for query parameter values. encodeURIkeeps URL structure (: / ? &) intact and is correct for whole URLs. All processing happens in your browser.
//Share this tool
//Related tools
JSON Formatter
Format, validate, minify, and prettify JSON data instantly.
JWT Decoder
Decode and inspect JWT tokens: header, payload, signature, expiration.
Base64 Encoder/Decoder
Encode text or files to Base64 and decode back. UTF-8 safe.
Regex Tester
Test regular expressions in real-time with match highlighting and groups.
Encode and decode URLs, URI components, and query strings. Parse any URL into its parts (protocol, host, path, parameters) and copy individual segments.
[x]Features
- -Full URL encoding with encodeURI semantics
- -Component encoding with encodeURIComponent semantics
- -Decoding with automatic %-sequence handling
- -URL parser breaking URLs into protocol, host, path, query, hash
- -Query parameter table with per-parameter copy
- -All processing stays in your browser
>Use Cases
- >Escaping user input for safe inclusion in URLs
- >Debugging malformed query strings in API requests
- >Building OAuth and redirect URLs correctly
- >Understanding how percent-encoding affects routing