Files never leave your device
URL Encoder / Decoder
Convert spaces, special characters, and Unicode to and from URL-safe encoding.
How to use URL Encoder
- Choose Encode to escape characters, or Decode to reverse them.
- Pick "Component" for query-string values, or "Full URL" for entire URLs.
- Paste your input — the result updates instantly.
- Copy the output with one click.
Why URL encoding matters
URLs may only contain a limited set of characters. Anything else — spaces, accents, slashes inside a query value, ampersands inside a search term — must be percent-encoded. Skip the step and the URL will either be rejected or, worse, silently parsed wrong.
Component vs. full URL
Use Component when encoding a single piece of a URL — a search term, a path segment, a query value. It escapes everything that could break URL structure. Use Full URL when encoding a complete URL that you don't want to break — it preserves :/?#&=+ so the URL stays functional.