URL 解碼工具

直接在瀏覽器中輕鬆解碼 URL 參數

解碼選項

關於 URL 解碼

什麼是URL解碼?

URL 解碼將 URL 編碼的字元轉換回其原始格式。URL 只能使用 ASCII 字元集通過 Internet 發送,因此特殊字元使用“%”後跟兩個十六進位數位進行編碼。

URL decoding reverses this process, converting encoded characters (like "%20" for a space) back into their original form, making the URL human-readable and easier to process programmatically.

常見用例

  • 解碼從 Web 表單接收的 URL 參數
  • 在 Web 應用程式中處理查詢字串
  • 解碼 API 回應 URL
  • 調試編碼的 URL
  • 在遺留系統中使用編碼數據

URL 解碼示例

特殊字元

%20 → Space ( )
%3F → Question mark (?)
%26 → Ampersand (&)
%3D → Equals sign (=)
%2B → Plus sign (+)

複雜範例

Before: https%3A%2F%2Fexample.com%2Fsearch%3Fquery%3Dhello%2520world%26category%3Dbooks%26price%3D%252420-%252430  After: https://example.com/search?query=hello world&category=books&price=$20-$30

Related Tools