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

Javascript examples for DOM:Key Event

Description

KeyEvent charCode 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) {//from  ww  w .j a v  a  2  s .c  om
    var x = event.charCode || event.keyCode;  
    var y = String.fromCharCode(x);           
    document.getElementById("demo").innerHTML = "Number: " + x + " = Character: " + y;
}
</script>

</body>
</html>

Related Tutorials