Encode text into a URL-safe format — special characters, spaces and symbols get converted so they can be used safely in a URL.
About URL encoding
URL (percent) encoding converts characters that aren't allowed in a URL — like spaces, ampersands, and symbols — into a safe, percent-escaped format (for example, a space becomes %20). This is commonly needed when building query strings or embedding user input in a link.
FAQ
What does this use under the hood? The browser's built-in encodeURIComponent(), which handles the full range of Unicode text correctly.
Need to reverse this? Use the URL Decoder.