What this tool does
Encode query values and URL fragments safely, or decode percent-encoded strings back into readable text in the browser.
Encode URL-safe values or decode percent-encoded strings directly in the browser.
Encode query values and URL fragments safely, or decode percent-encoded strings back into readable text in the browser.
Type text or a URL fragment, then encode it for safe transport or decode percent-encoded content back into readable text.
Prepare query-string values before testing APIs, redirects, or webhook URLs. Decode copied URLs from logs or browsers to inspect readable parameter values. Fix broken links caused by spaces, unicode characters, or already-encoded fragments.
Prepare query-string values before testing APIs, redirects, or webhook URLs.
Decode copied URLs from logs or browsers to inspect readable parameter values.
Fix broken links caused by spaces, unicode characters, or already-encoded fragments.
hello world?tag=한글
hello%20world%3Ftag%3D%ED%95%9C%EA%B8%80
It uses standard percent-encoding through encodeURIComponent and decodeURIComponent behavior.
Malformed percent-encoded strings return a decode error so you can spot bad input quickly.
Yes. URL Encode works in the browser so you can enter data, review the result, and copy the output without needing a separate desktop app.
Found a bug, hit a confusing edge case, or want another tool? Send quick feedback about URL Encode.