🔗 URL Encoder / Decoder

Encode URLs for safe transmission or decode encoded URLs back to readable format.

Examples

Original URL

https://example.com/search?q=hello world&lang=en

Encoded URL

https%3A%2F%2Fexample.com%2Fsearch%3Fq%3Dhello%20world%26lang%3Den

Instant

Encode/decode instantly

🔄

Bidirectional

Encode and decode

📝

Bulk Text

Process large amounts

🔒

100% Private

All processing in browser

What is URL Encoding?

URL encoding (also called percent-encoding) converts characters into a format that can be transmitted over the Internet. URLs can only be sent using the ASCII character set, so special characters must be encoded.

Common Encodings:

  • Space → %20
  • ! → %21
  • # → %23
  • $ → %24
  • & → %26

Use Cases:

  • Passing parameters in URLs
  • Sharing links with special characters
  • API requests and responses
  • Form data submission
  • Email links with subjects