URL Encoder / Decoder
Percent-encode or decode text and query strings β runs in your browser, nothing uploaded.
What This Tool Does
Encode: Uses encodeURIComponent so spaces and reserved characters become percent-encoded (e.g. %20, %26)βideal for query values and path segments.
Decode: Normalizes + to spaces, then decodeURIComponent. Invalid sequences show an error toast instead of breaking the page.