URL Encoder
Percent-encode text for query strings and path segments.
Your input stays in your browser. Nothing is uploaded.
Input
Output
About this tool
This uses encodeURIComponent, which encodes reserved query characters such as &, =, and spaces as %20.
How it works
Paste the value you want in a URL, encode, and paste the result into a query string.
encodeURIComponent(text)
Examples
Space
"a b" becomes a%20b.
FAQ
Is this the same as encodeURI?
No. encodeURI leaves :/?#[]@ unescaped. This tool encodes a single component.
Is my data uploaded?
No. Formatting, encoding, and generation run in your browser.
Can I use this offline after the page loads?
Yes, as long as the page stays open. Nothing is sent to a SmartKitio API.

