URL Encode
Percent-encode text and URLs for safe transmission.
Convert percent-encoded URL strings back to readable text using decodeURIComponent. Paste any encoded URL or query string and see the plain-text result instantly. All processing happens in your browser.
Percent-encoded URLs are common when working with web APIs, browser address bars, and server logs. A URL like q=hello%20world%26lang%3Den is much harder to read than q=hello world&lang=en. This decoder converts those sequences back to human-readable form so you can debug requests, inspect redirects, or read log entries without doing the conversion in your head. It uses the browser's native decodeURIComponent which correctly handles multi-byte Unicode sequences encoded in UTF-8.