URL Decode
Decode percent-encoded URL strings back to plain text.
Percent-encode any text or URL using encodeURIComponent. Spaces become %20, slashes become %2F, and all special characters are converted to safe URL tokens. Everything runs in your browser.
URL encoding is a fundamental part of working with HTTP. Query parameters, form submissions, and API calls all rely on percent-encoding to safely carry arbitrary text inside a URL. This tool uses the browser's native encodeURIComponent function, which handles Unicode correctly by first converting characters to their UTF-8 byte sequences and then percent-encoding each byte. It is the standard choice for encoding individual query parameter values before appending them to a URL.