I want to put an email address on a website, and protect it (at least a little, I don't want to use JavaScript encoding) from spam. The method I use is printing Unicode characters in my HTML, so bots don't recognise the email addresses.
The code:
<a href="mailto:something@hotmailˬom">somethingk@hotmailˬom</a>
Output:
something@hotmailˬom
What goes wrong: The dot (002E) displays as a 02EC Unicode character. When I print . without any text directly next to it, the dot is displayed like it should.