Stop spam bots in their tracks. Convert your email addresses into unreadable HTML entities that humans can see, but malicious scrapers cannot read.
Execute character-level encoding to hide sensitive data from automated harvesting tools.
The engine systematically maps standard ASCII characters into obscure Decimal (`e`) or Hexadecimal (`e`) HTML entities, destroying the regex patterns used by spam bots.
Because HTML entities are natively supported by all browsers, the gibberish code you paste into your source file will automatically render as perfectly normal English text on the human user's screen.
In addition to HTML encoding, the tool can obfuscate text into JavaScript Unicode escapes (`\u0065`) or URI percentages (`%65`), providing layered defense mechanisms against different types of scraping algorithms.
If you type your email address directly into your website's "Contact Us" page, you will be inundated with spam. The internet is swarming with malicious bots designed by spammers to constantly crawl websites, rip out email addresses, and sell them on the dark web. To protect your inbox, you must use an online string obfuscator to hide your data.
A harvesting bot is a stupid, but incredibly fast, piece of software. It does not look at your website like a human does. It simply downloads the raw HTML source code file.
It then runs a Regular Expression (Regex) search looking for the exact pattern mailto: or an @ symbol surrounded by text. If you wrote [email protected], the bot instantly extracts it and moves to the next website.
Obfuscation works by destroying that pattern. The letter h is mathematically converted to the HTML entity h. The @ symbol becomes @. The raw HTML code looks like pure gibberish. The bot scans the code, fails to find an "@" symbol, and leaves empty-handed.
If the code is gibberish, how do humans read my email address?
This is the genius of HTML entities. Web browsers (like Chrome or Safari) are designed to automatically decode entities before rendering the visual screen to the user.
You paste the ugly gibberish hello into your codebase. When a human opens your website, Chrome reads the gibberish, quietly translates it in the background, and displays the perfect, clickable word hello on the screen.
In cybersecurity, obfuscation is referred to as "Security through Obscurity". It is not encryption, and it is not perfect.