How does it work?

This tool encodes your email address in base64 and splits this base64 character string into different sized parts and reverses the order.

the browser splits the string back into the different parts and inverts the sequence again, then decodes the valid base64 code. After that it creates a new link element with the email address and the matching mailto link. finally it inserts this element on the page at the position where the code was.
this does not look like a real email address
<script>var a=atob("".split("?").reverse().join("")),b=document.createElement("a");b.innerText=a;b.href="mailto:"+a;document.currentScript.replaceWith(b);</script>
Coded With ❤️ by lennis-dev