URL Encoder/Decoder

Encode or decode URL components. Parse query strings into a readable table.

0 chars
0 chars

encode vs encodeComponent

encodeURI keeps reserved URL characters like : / ? # & intact — use it for whole URLs. encodeURIComponent escapes those too — use it for a single query-string value.