URL decoding is essential for converting percent-encoded characters back to their original form, making web content more readable and interpretable. This tool instantly transforms URL-encoded strings, helping developers, testers, and web professionals easily decode complex URLs and understand their true content. Whether you're working with web links, API parameters, or troubleshooting encoded data, our URL decoder provides a quick and reliable solution.
// Original URL with special characters $originalUrl = "https%3a%2f%2fen.wikipedia.org%2fwiki%2fGoogle_News"; // URL Decode (convert percent-encoded format back to original) $decodedUrl = urldecode($encodedUrl); echo "Decoded URL: " . $decodedUrl . "\n";
var uri = "https%3a%2f%2fen.wikipedia.org%2fwiki%2fGoogle_News"; var encoded = decodeURIComponent(uri); console.log(encoded);
var url = 'https%3a%2f%2fen.wikipedia.org%2fwiki%2fGoogle_News'; var result = HttpUtility.UrlDecode(url);
You can easily decode HTML encoded string using this online tool. To decode just enter encoded html string into the textbox provided and press decode button.
You can also check similar URL Encode tool.