URL Encoder/Decoder
Encode or decode URLs and query strings safely.
What is URL encoding?
URL encoding converts characters into a format that can be transmitted over the Internet. URLs can only contain ASCII characters, so special characters must be encoded.
Common encoded characters
- Space becomes %20 or +
- & becomes %26
- = becomes %3D
- / becomes %2F