All tools
TOOL IDB-SWE-021
URL codec

仅限桌面端

工程工具仅在桌面端屏幕上可用。

URL 编码器与解码器

对 URL 分量进行百分号编码与解码,并提供完整的 URL 解析器,可正确解码并拆分 scheme、host、path、query 和 fragment。

URL 结构 scheme://host:port/path?query#frag
reserved chars to encode in component scope: : / ? # [ ] @ ! $ & ' ( ) * + , ; =
工程笔记

encodeURI 与 encodeURIComponent

  • encodeURI:保留 : / ? # & = + $ ,——用于完整 URL。
  • encodeURIComponent:编码所有保留字符——用于查询值和表单数据。
  • x-www-form-urlencoded:与 URIComponent 相同,但空格变为 +

结果

实时