About URL
Percent-encoding replaces reserved and non-ASCII characters with a % followed by their byte value in hex. It is what keeps a query string containing spaces, ampersands or emoji from being parsed as extra parameters.
URL encode a string without leaving the browser. URL Encoder percent-encodes and decodes URL components and query strings — useful when you need to percent-encode a value so it survives being placed in a query string between two other steps of a debugging session. Everything runs inside your browser, so the file never touches a server, which matters when the payload contains tokens, customer records or anything else you would not paste into an unknown server.
How to
Four steps, no account, nothing to install.
Add the string or URL you need to encode.
Encode a single component, or a whole URL.
Drop the safe value into your link or request.
Overview
Percent-encoding replaces reserved and non-ASCII characters with a % followed by their byte value in hex. It is what keeps a query string containing spaces, ampersands or emoji from being parsed as extra parameters.
Paste the value — Add the string or URL you need to encode. Pick the scope — Encode a single component, or a whole URL. Copy the output — Drop the safe value into your link or request. The whole loop is designed to be repeatable: change the input, read the new result, no re-submit step in between.
The failures people hit are predictable: Different rules for path, query and fragment; Double-encoding is a common bug. Each of those shows up as a specific, fixable symptom rather than a vague error, which is exactly what this tool surfaces.
Query string building, Redirect and callback URLs, OAuth parameters — these are the contexts where URL shows up, and this page is the fast path between "I have a blob of input" and "I understand what it contains". Keep the tab open next to your editor and your terminal.
Features
Component and full-URL modes
Handles Unicode correctly
Detects double-encoding
Instant reverse decoding
Reference
| Property | Value |
|---|---|
| Format | URL percent-encoding |
| Extension | .txt |
| MIME type | text/plain |
| Human readable | No |
| Typical use | Query string building |
Examples
Copy the raw payload out of the network tab, drop it in here, and read the result immediately — no curl round trip, no scratch file.
Paste the snippet from the diff to confirm what it evaluates to before approving the change.
Because processing is local, real payloads with real identifiers can be inspected without violating a data-handling policy.
Benefits
FAQ
1. Paste the value: Add the string or URL you need to encode. 2. Pick the scope: Encode a single component, or a whole URL. 3. Copy the output: Drop the safe value into your link or request.
No. Everything runs inside your browser, so the file never touches a server — safe for tokens, staging payloads and customer data.
Yes, with no account, no rate limit and no paid tier.
The escaping rules that let arbitrary text travel safely inside a URL. It is what keeps a query string containing spaces, ampersands or emoji from being parsed as extra parameters.
Different rules for path, query and fragment; Double-encoding is a common bug.
Once the page has loaded, yes — the processing needs no network access.
Tools
Explore
Learn