🧰
Open Source Toolkit

Know how to use it before you click: online, self-hosted, desktop, CLI

中文

🔗 URL Encoder / Decoder

Encode and decode URLs, with separate modes for full URLs and component values.

🔒 Everything runs locally in your browser. Files and content are never uploaded.

About this tool

两种模式差别很关键:encodeURI 不会转义 & = ? / 这些分隔符,适合整条链接;encodeURIComponent 会全部转义,适合拼接查询参数。用错了链接就会断。