URL Encoder/Decoder

Encode and decode URLs with proper percent encoding

Raw URL/Text

Encoded URL

Encoded URL

Decoded URL/Text

About URL Encoding

URL Encoding (also known as percent encoding) is a mechanism to encode information in a Uniform Resource Identifier (URI) under certain circumstances.

Common Encoded Characters:

  • space%20
  • !%21
  • "%22
  • #%23
  • $%24
  • %%25
  • &%26

When to Use:

  • URLs with special characters
  • Query parameters with spaces
  • Form data transmission
  • API request parameters
  • Browser compatibility