این کدها در Notepad ویندوز کپی کنید و با فرمت HTML ذخیره کنید و نتیجه رو مشاهده کنید:
<script type="text/javascript" charset="utf-8">
String.prototype.toFaDigit = function() {
return this.replace(/\d+/g, function(digit) {
var ret = '';
for (var i = 0, len = digit.length; i < len; i++) {
ret += String.fromCharCode(digit.charCodeAt(i) + 1728);
}
return ret;
});
};
window.onload = function() {
var body = document.getElementsByTagName("body")[0];
body.innerHTML = body.innerHTML.toFaDigit();
};
</script>
<body>
<p>329860v3908w09eymc</p>
<p>536349vm83w4tegy</p>
<p>4555585v9364v5</p>
<p>457346b747b7b5444e5y</p>
</body>