URL Encoder / Decoder
Encode or decode URL components and query strings.
About URL Encoding
URL encoding converts characters into a format that can be transmitted over the internet. It's commonly used for:
- Encoding query parameters in URLs
- Converting spaces and special characters
- Making URLs safe for transmission
- Handling non-ASCII characters in URLs
Example: "hello world" becomes "hello%20world"