URL Encode
Percent-encode URLs and query strings. Processed in your browser.
URL Encode applies encodeURIComponent or encodeURI so spaces and special characters are safe in links and queries.
Frequently Asked Questions
Which mode should I use?
Use encodeURIComponent for query values. Use encodeURI for a full URL that should keep :/? intact.
Is my data uploaded?
No. Encoding runs entirely in your browser.