K
kei
I'd like Translate Unicode Character Codes to TrueType by a javascript (for
example 1868481587700 to true type) because i'd like decrypt unicode
character codes of this html page. Thanks.
****************************************************************************
************************************
<html>
<head>
<title>Crypt Password</title>
<script>
function calculate(){
passworda = document.password1.password2.value.toLowerCase()
passwordb = document.password1.password3.value.toLowerCase()
if (passworda == passwordb){
pass = 1
for(i = 0; i < passworda.length; i++) {
pass *= passworda.charCodeAt(i);
}
document.password1.password4.value = pass;
}
else{
alert("Wrong!!!");
}
}
</script>
</head>
<body>
<form name="password1"><div align="left">
<table border="0" cellspacing="0" cellpadding="2">
<tr>
<td>
<strong>Insert password: </strong></td>
<td><input type="text" name="password2" size="15">
</td>
</tr>
<tr>
<td><strong>Confirm: </strong></td>
<td><input type="text" name="password3" size="15"></td>
</tr>
<tr>
<td></td>
<td><input type="button" value="Crypt" onClick="calculate()">
<input type="reset" value="Reset" name="B1"></td>
</tr>
<tr>
<td><strong>Password crypted: </strong></td>
<td><input type="text" name="password4" size="15"></td>
</tr>
</table>
</div>
</form>
</body>
</html>
****************************************************************************
******************************************
example 1868481587700 to true type) because i'd like decrypt unicode
character codes of this html page. Thanks.
****************************************************************************
************************************
<html>
<head>
<title>Crypt Password</title>
<script>
function calculate(){
passworda = document.password1.password2.value.toLowerCase()
passwordb = document.password1.password3.value.toLowerCase()
if (passworda == passwordb){
pass = 1
for(i = 0; i < passworda.length; i++) {
pass *= passworda.charCodeAt(i);
}
document.password1.password4.value = pass;
}
else{
alert("Wrong!!!");
}
}
</script>
</head>
<body>
<form name="password1"><div align="left">
<table border="0" cellspacing="0" cellpadding="2">
<tr>
<td>
<strong>Insert password: </strong></td>
<td><input type="text" name="password2" size="15">
</td>
</tr>
<tr>
<td><strong>Confirm: </strong></td>
<td><input type="text" name="password3" size="15"></td>
</tr>
<tr>
<td></td>
<td><input type="button" value="Crypt" onClick="calculate()">
<input type="reset" value="Reset" name="B1"></td>
</tr>
<tr>
<td><strong>Password crypted: </strong></td>
<td><input type="text" name="password4" size="15"></td>
</tr>
</table>
</div>
</form>
</body>
</html>
****************************************************************************
******************************************