URL Encoder / Decoder
Percent-encode URLs or decode encoded strings instantly. Your data stays in your browser.
encodeURIComponent
Encodes all special chars including :/?#&=. Use for query parameter values.
encodeURI
Preserves URL structure chars (:/?#&=). Use for full URLs.
β Bidirectional
Switch between encode and decode to reverse any percent-encoded string.