
URL Encoder / Decoder
URL Encoder / Decoder Mode: Encode Decode Scope: Component (encodeURIComponent) Full URL (encodeURI) Input 0 chars Encoded Output 0 chars Encode Copy Result Clear ⇅ Swap Auto-detect ON encodeURIComponent — Encodes all characters except: A–Z a–z 0–9 - _ . ! ~ * ' ( ). Best for encoding individual query parameters or path segments. Encoded Character Breakdown Original Encoded Unicode Note How It Works URL encoding (percent-encoding) converts characters that are not safe for use in URLs into a %XX format, where XX is the hexadecimal value of the character’s UTF-8 byte(s). ...








