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 相同,但空格會變成 +

結果

即時