decodeURIComponent Online Tool
Decode strings using JavaScript's decodeURIComponent function. Decode encoded URL parameters and values. Free online decoder tool.
Часті запитання
What's the difference between decodeURI and decodeURIComponent?
decodeURIComponent decodes ALL percent-encoded characters. decodeURI does NOT decode characters that have structural meaning in URLs (%2F for /, %3F for ?, etc.). Use decodeURIComponent for individual parameter values, decodeURI for complete URLs.