devvkit / dev
URL Encoder/Decoder
Encode and decode URLs, query strings, and components. Parse URLs into parts.
Input
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
Base64 Encoder/Decoder
Encode text or files to Base64 and decode back. UTF-8 safe.
HTML Entities Encoder/Decoder
Encode and decode HTML entities with a character reference cheat sheet.
Text Case Converter
Convert text between lowercase, UPPERCASE, Title Case, camelCase, snake_case, and more.
API Tester
Send HTTP requests, inspect responses, and generate curl commands.
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