URL Encoder/Decoder

Encode and decode URLs for safe transmission and parsing

Input

Output

Processing happens locally in your browser

About URL Encoding

What is URL Encoding?

URL encoding (also known as percent-encoding) is a mechanism for encoding information in a Uniform Resource Identifier (URI). It converts characters into a format that can be transmitted over the Internet safely.

Common Uses

  • • Spaces become %20
  • • Special characters are encoded
  • • Non-ASCII characters are converted
  • • Safe for HTTP requests
  • • Used in query parameters