What this tool does
NexKit URL Encode converts text into a URL-safe percent-encoded form (using the same method as JavaScript's built-in encodeURIComponent), entirely in your browser, updating live as you type.
How to URL-encode text
Paste or type your text into the box. The encoded result appears immediately and can be copied with one click.
Privacy and file handling
Your text is encoded entirely in your browser. It is not uploaded to NexKit servers by this tool.
Frequently Asked Questions
Is my text uploaded?
No. Your text is encoded locally in your browser. It is not uploaded to NexKit servers by this tool.
Does it handle non-English text?
Yes. Accented characters, CJK text, and emoji all encode correctly.
Which characters actually get encoded?
Everything except A-Z, a-z, 0-9, and the nine characters - _ . ! ~ * ' ( ) is percent-encoded; those are left exactly as typed. This matches JavaScript's encodeURIComponent, so a space becomes %20, not a plus sign.