Preventing privacy leak with TuringFonts (substitution cipher)

Download one of web fonts (.woff2) from TuringFonts. Assumed Zebra is used here

Put the font to the web directory and define the below in a stylesheet:

1
2
3
4
5
6
7
@font-face {
font-family: ArialZebra;
src: url("arial_zebra.woff2")
}
.zebra-substitution {
font-family: ArialZebra
}

Assign zebra-substitution class to where it needs

1
<span class="zebra-substitution">[email protected]</span>

See how it looks.

TuringFonts also provides Encoder to get a ciphered text.