How to use URL Encoder & Decoder — Free Percent-Encoding Tool
- 1Choose the scheme you need, then encode or decode.
- 2Paste your text into the left-hand box.
- 3The converted result appears on the right — copy it, or press Swap to send it back through the other way.
About URL Encoder / Decoder
Percent-encoding is what keeps URLs unambiguous. Certain characters have structural meaning in a web address — ? starts the query, & separates parameters, # begins the fragment — so any of those appearing inside a value has to be escaped, or the URL breaks in ways that are hard to spot.
The distinction between the two modes matters more than it looks. Encoding a search phrase only needs spaces and accents escaped. Putting an entire URL inside a redirect parameter needs the reserved characters escaped too, otherwise the inner URL's own ? and & get read as part of the outer one and the link silently loses half its parameters.
The decoder accepts both %20 and + for spaces, since query strings in the wild use both.