HomeToolsFree Tools

URL Encoder / Decoder

Percent-encode text for use in URLs and query strings, or decode an encoded URL back into readable text.

Component vs full URL

Encode component (encodeURIComponent) encodes everything including / ? & = — use it for individual query-string values. Encode full URL (encodeURI) keeps URL structure characters intact — use it to fix spaces and unicode in a whole address.