URL Encoder / Decoder
Encode text for safe use in URLs (percent-encoding) or decode an encoded URL back to readable text. Handy for developers, marketers and anyone sharing links.
How to use
- Paste your URL or text.
- Click Encode or Decode.
- Copy the result.
Frequently asked questions
What's the difference between encode and decode?
Encoding replaces special characters with %-codes so URLs stay valid; decoding reverses it back to readable text.
Does it handle full URLs and components?
Yes β it uses encodeURIComponent/decodeURIComponent so spaces, &, ? and other characters are handled correctly.