Decrypt unicode

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>
****************************************************************************
******************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,091
Messages
2,570,604
Members
47,223
Latest member
smithjens316

Latest Threads

Top