URL Encoder/Decoder

Encode and decode URLs safely for web applications and APIs.

0 characters
Encoded output will appear here...
0 characters

About URL Encoding

URL encoding (also known as percent-encoding) is a mechanism for encoding information in a Uniform Resource Identifier (URI).

Special characters are replaced with a % followed by two hexadecimal digits. For example:

  • Space becomes %20
  • ? becomes %3F
  • & becomes %26