Encode or decode URL components. Parse query strings into a readable table.
0 chars
0 chars
URL Parts
Query Parameters
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.