Instantly URL‑encode or URL‑decode any text using standard percent‑encoding. Perfect for working with query parameters, path segments, and UTF‑8 characters. Everything happens inside your browser—your data stays 100% private.
URL encoding (also called percent‑encoding) replaces unsafe ASCII and non‑ASCII characters with a `%` followed by two hexadecimal digits, making the string safe to transmit in a URL.
When you receive data from a web form, a query string, or a third‑party service that uses percent‑encoding and you need the original human‑readable text.
Yes, the tool uses `encodeURIComponent`/`decodeURIComponent`, which work on UTF‑8 byte sequences—covering any Unicode character.