URL Encoder / Decoder
Encode and decode URL components and query parameters
Original URL
Encoded URL
About URL Encoding
URL encoding (percent-encoding) converts special characters into a format that can be transmitted over the Internet. Characters like spaces, &, ?, and non-ASCII characters are encoded using a % followed by hexadecimal digits.
Common Examples
- Space: %20
- &: %26
- =: %3D
- ?: %3F
- /: %2F