URL Encoder / Decoder
Encode special characters for URLs using percent-encoding, or decode URL-encoded strings back to readable text.
Input
Output
encodeURIComponent encodes all special chars including / ? # @ = & โ use for query parameter values.
encodeURI preserves URL structure characters โ use for complete URLs.