URL Encoder/Decoder
Encode and decode URLs with support for various encoding schemes
About URL Encoding
Full URL Encoding: encodeURI() - Encodes a complete URL, preserving special characters that have meaning in URLs.
Component Encoding: encodeURIComponent() - Encodes a URL component, encoding all special characters including /, ?, &, =, etc.
Common Uses: API parameters, query strings, form data, and ensuring URLs work across different systems.
Special Characters: Spaces become %20, & becomes %26, = becomes %3D, etc.