KeyEvent keyCode Property - Convert the Unicode value into a character - Javascript DOM

Javascript examples for DOM:Key Event

Description

KeyEvent keyCode Property - Convert the Unicode value into a character

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<input type="text" size="40" onkeypress="myFunction(event)">

<p id="demo"></p>

<script>
function myFunction(event) {//w w w.j a  va 2s.c o  m
    var x = event.keyCode;               
    var y = String.fromCharCode(x);      
    document.getElementById("demo").innerHTML = "Number: " + x + " = Character: " + y;
}
</script>

</body>
</html>

Related Tutorials