URL Encoder / Decoder
Encode and decode URLs instantly
How to Use
- Paste your text or URL into the input area
- Click Encode to percent-encode or Decode to convert back to readable text
- Copy the result to your clipboard
FAQ
What is URL encoding?
URL encoding (percent-encoding) replaces special characters with a % sign followed by their hexadecimal value. For example, a space becomes %20 and & becomes %26.
When do I need to encode a URL?
URL encoding is needed when passing special characters in query parameters, form data, or API requests. Characters like spaces, &, =, and non-ASCII characters must be encoded to be valid in URLs.