HTML Decode
Decode your encoded HTML markup.
About the HTML Decode Tool
The HTML Decode Tool is a free online tool that will help you to decode encoded HTML back to plain HTML. This tool will perform the reverse operation of the HTML Encode tool.
Example
(Encoded HTML)
<!DOCTYPE html>
<html>
<head>
<title>FreeWebToolkit</title>
<meta charset="UTF-8" />
</head>
<body>
<h1>Welcome</h1>
</body>
</html>
will output (plain HTML)
<!DOCTYPE html>
<html>
<head>
<title>FreeWebToolkit</title>
<meta charset="UTF-8" />
</head>
<body>
<h1>Welcome</h1>
</body>
</html>
How to use the HTML Decode Tool?
- Just paste your encoded HTML.
- Hit the "Decode" button to get your plain HTML.