URL Encoder & Decoder
When a link contains spaces, accented characters or a character like &, the URL needs a safe encoded form. Paste text or part of a URL and instantly get the encoded or readable version. Everything runs directly in your browser.
How the URL Encoder Works
A URL is not just a normal sentence. Some characters have a special meaning: a question mark starts the parameters, & separates them, and spaces should not be written directly into a URL. URL encoding, also called percent-encoding, rewrites those characters into a safe form. A space becomes %20, & becomes %26, and accented or non-ASCII characters get their encoded form. The reverse process is URL decoding. This tool is especially useful for parameter values, search queries and individual parts of a URL.
Examples
Common text values look like this before and after encoding:
coffee & tea
coffee%20%26%20tea
summer dress
summer%20dress
price list
price%20list
Where It Helps
-
when you build a link with a search query or filter
-
when a parameter contains a space, accented character, & or ?
-
when you need to decode a URL and quickly see what it contains
-
when preparing values for an API, form or query string
-
when checking why a pasted link stopped working