URL Encoder/Decoder
Encode and decode URL strings with percent encoding. Supports full URLs and URL components with special character handling.
About URL Encoding:
- Encode: Converts special characters to percent-encoded format (e.g., space → %20)
- Decode: Converts percent-encoded characters back to their original form
- Component Mode: Use for encoding query parameters, fragments, or individual URL components
- Special characters like spaces, ampersands (&), equals (=), and Unicode characters are properly encoded
