Encode/Decode Tools

Advanced HTML, text, and JavaScript encoding/decoding utilities for protecting your source code with military-grade obfuscation

Text/HTML/JavaScript Escaping
Escape any text, HTML, or JavaScript to make it unreadable to common users. Uses URL escape codes (two-character hexadecimal values preceded by %).
How to Use

Escape/Unescape

Use this to hide email addresses or simple text from web crawlers. The escaped text can be used directly with the browser's built-in unescape() function.

document.write(unescape('%65%78%61%6D%70%6C%65%40%65%6D%61%69%6C%2E%63%6F%6D'));

Encode/Decode

This method shifts Unicode values by adding a code key, making text much harder to read. Use different code keys for different levels of obfuscation.

HTML Page Encoder

Creates a complete encoded HTML page with a built-in decoder function. Copy the output and save it as an HTML file - it will display your original content when opened in a browser.