»
EnglishFrenchVietnamese

Print - Extended Font Creator - JavaScriptBank.com

Full version: jsB@nk » Security » Encryption » Extended Font Creator
URL: https://www.javascriptbank.com/extended-font-creator.html

Extended Font Creator © JavaScriptBank.comTransform your text messages in a extended font.

Full version: jsB@nk » Security » Encryption » Extended Font Creator
URL: https://www.javascriptbank.com/extended-font-creator.html



JavaScript
<script language="JavaScript"><!--  var thisString;  function startText() {    thisString = document.ExtendedFont.box1.value;    thisString = thisString.replace(/A/g, "Ä");    thisString = thisString.replace(/B/g, "ß");    thisString = thisString.replace(/C/g, "Ç");    thisString = thisString.replace(/D/g, "Ð");    thisString = thisString.replace(/E/g, "È");    thisString = thisString.replace(/F/g, "£");    thisString = thisString.replace(/I/g, "Ì");    thisString = thisString.replace(/N/g, "ñ");    thisString = thisString.replace(/O/g, "Ö");    thisString = thisString.replace(/P/g, "þ");    thisString = thisString.replace(/S/g, "§");    thisString = thisString.replace(/T/g, "&#8224;");    thisString = thisString.replace(/U/g, "Ú");    thisString = thisString.replace(/X/g, "×");    thisString = thisString.replace(/Y/g, "¥");    thisString = thisString.replace(/a/g, "å");    thisString = thisString.replace(/b/g, "ß");    thisString = thisString.replace(/c/g, "¢");    thisString = thisString.replace(/d/g, "Ð");    thisString = thisString.replace(/e/g, "ê");    thisString = thisString.replace(/f/g, "£");    thisString = thisString.replace(/i/g, "ï");    thisString = thisString.replace(/n/g, "ñ");    thisString = thisString.replace(/o/g, "ð");    thisString = thisString.replace(/p/g, "þ");    thisString = thisString.replace(/s/g, "§");    thisString = thisString.replace(/t/g, "&#8224;");    thisString = thisString.replace(/u/g, "µ");    thisString = thisString.replace(/y/g, "¥");    thisString = thisString.replace(/1/g, "¹");            thisString = thisString.replace(/2/g, "²");    thisString = thisString.replace(/3/g, "³");    thisString = thisString.replace(/5/g, "5");    thisString = thisString.replace(/0/g, "Ø");    document.ExtendedFont.box1.value=thisString;  }//--></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onclick="startText();"><form name="ExtendedFont">  <div align="center"><center><p><input type="text" size="70" name="box1" tabindex="1"> </p>  </center></div><div align="center"><center><p><input type="button" value="Convert"></p>  </center></div><div align="center"><center><p>&nbsp;</p>  </center></div></form></body><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->