URL 인코딩r 디코딩r
Free online URL encoder and decoder. Supports encodeURIComponent, encodeURI and custom, parses query params and UTM tags, pure frontend.
사용법
기능
- URL 编码:encodeURIComponent(全字符编码,包括 :/ 等保留字符)
- URL 编码:encodeURI(保留 URL 结构字符 / ? : @ & = + $ , ;)
- URL 解码:decodeURIComponent 解码 %xx 编码
- Query 解析:输入 URL 自动拆出所有参数,高亮 UTM 系列
- URL 构建:从 key=value 列表构建 ?key=value&...
활용 사례
- 选择操作,粘贴文本,点"开始处理"
- 构建 URL 时填键值对,每行
key=value - 纯前端 JS,无后端调用,数据 100% 在浏览器内处理
Runtime
- 现代浏览器(Chrome/Firefox/Safari/Edge)
- 无外部依赖,纯 JS
- 无需后端,数据不上传保护隐私
나이nt API 사용법
This tool is pure frontend,Data is processed in the browser,never sent to a server。
manifest 中 api_url 为空,
/api/url_encoder_decoder/ endpoint does not exist(返回 404)。
Agent 请读取 schema.json 理解字段,Please execute the tool logic in the browser first。
// Step 1: 读取工具 Schema GET https://clawam.com/tools/url_encoder_decoder/schema.json // Step 2: 在浏览器中执行工具逻辑 // URL 编码/解码/参数解析 在工具页 JS 中实现