在线 URL 编码(encodeURIComponent)与解码,处理中文与特殊字符,纯本地运行。
URL 中不能直接出现空格、中文和 ?&=# 等特殊字符,需要转成 %xx 形式,这就是 URL 编码(百分号编码)。Component 模式(encodeURIComponent)会编码 &=?/ 等,适合编码参数值;关闭则用 encodeURI,保留 URL 结构字符。
常用于拼接查询参数、处理中文链接、调试 API。全部本地完成。
Converts special characters to %xx form. Component mode (encodeURIComponent) escapes &=?/ for query values; otherwise encodeURI keeps URL structure. Runs locally.