Premium Converters
Loading
Loading
Loading
Percent-encode and decode URLs and query parameters. Supports both component and full-URI modes.
Utility
Generated on August 22, 2026
:/?&=#) — use for individual parameter values. Full URI mode preserves the URL syntax characters — use for entire URLs.Percent-encode and decode URLs and query parameters. Supports both component and full-URI modes.
The URL Encoder/Decoder converts text to and from percent-encoded form (the `%20` style of escaping you see in URLs). Two modes: 'Component' uses encodeURIComponent — escapes everything except A-Z a-z 0-9 - _ . !
Formula
Percent-encoding (RFC 3986): each non-safe byte → %XX where XX is its hex value. UTF-8 multi-byte characters become multiple %XX sequences.If you're URL-encoding right now, you've probably just hit one of two walls — a query string that broke because someone typed a literal & inside a search term, or an API that's returning 400 because your special characters aren't escaped. Both fixes are mechanical, but the gotcha is choosing the right encoding: encodeURI and encodeURIComponent look identical until you encode a slash or a colon, and one of them will silently corrupt the path of your request. Most teams settle the question with a one-liner in production code, but when you're debugging a 3am support ticket you want to paste-and-see, not re-read the MDN page. Drop the raw string in, get the encoded and decoded versions side by side, and you can verify character-by-character against what the API actually received. The decoder pulls equal weight — log-file URLs from your error tracker arrive double-encoded half the time, and a quick round-trip tells you instantly which side of the wire mangled them. Bonus: the query-parameter parser splits a messy URL into a clean key/value table so you can spot the parameter that's actually broken instead of squinting at a 600-character one-liner.
The URL Encoder/Decoder converts text to and from percent-encoded form (the `%20` style of escaping you see in URLs). Two modes: 'Component' uses encodeURIComponent — escapes everything except A-Z a-z 0-9 - _ . ! ~ * ' ( ) — appropriate for individual URL parts (parameter values, path segments). 'Full URI' uses encodeURI — preserves URL syntax characters like `:/?#&=` so the URL itself stays intact. Includes a query-parameter parser that breaks decoded URLs into a key/value table.
Encode a search query for a URL: `q=hello world` → `q=hello%20world`.
Encode a path with non-ASCII: `/cafés/` → `/caf%C3%A9s/` (UTF-8 bytes for é → %C3%A9).
Decode a complex query string from analytics or a redirect: `?utm_source=google%20ads&q=cats%20%26%20dogs`.
When passing one URL inside another (OAuth redirects, share links), encode the inner URL with `encodeURIComponent`.
Jump to a ready-made conversion — useful for quick reference and sharing:
Hash Calculator (MD5 / SHA-1 / SHA-256 / SHA-384 / SHA-512)
Compute cryptographic hashes of text or files in your browser. All five major algorithms, no upload.
UUID Generator (v4)
Generate cryptographically random UUIDs (v4) in bulk. Multiple format options, copy + clear.
Markdown ↔ HTML Converter
Convert Markdown to HTML (or back) with live preview. Supports CommonMark + GFM (tables, fenced code).
Image Format Converter (PNG / JPEG / WebP)
Convert images between PNG, JPEG, and WebP in your browser. Adjustable quality. No upload — fully private.
IBAN Validator
Validate International Bank Account Numbers via Mod-97 checksum. Country detection for 60+ nations.
Lorem Ipsum Generator
Generate placeholder text — paragraphs, sentences, words, or specific byte counts. With or without classic 'Lorem ipsum' opener.
Base Converter
Convert integers between binary (base 2), octal (base 8), decimal (base 10), and hexadecimal (base 16) — built for programmers debugging memory addresses, bitmasks, and hex colors.
Unix Timestamp Converter
Translate Unix epoch timestamps (seconds or milliseconds since Jan 1 1970 UTC) to readable ISO, UTC, and local-timezone dates — auto-detects format and handles the Y2038 problem.
Browse all Utility calculators & converters
See every tool in this category, plus FAQs and category-specific guides.