
Paste your input
Drop CSS, HTML, JSON, or other text into the editor. Nothing is uploaded.
Encode URLs.
Four quick steps — paste, run, review, copy. Everything stays in your browser.

Drop CSS, HTML, JSON, or other text into the editor. Nothing is uploaded.

Click Convert or Run. The result appears instantly on this page.

Read the generated code and any review notes before you ship it.

Copy the output to your clipboard and paste it into your project.
Percent-encode a string for query parameters and path segments so spaces and symbols travel safely.
Spaces, ?, and & become percent-encodings.
Input
css to tailwind?ref=docs & guide
Output
css%20to%20tailwind%3Fref%3Ddocs%20%26%20guide
encodeURIComponent is for components — full URLs sometimes need encodeURI instead.