How can I convert a character to its respective keycode?
For example:
a
65
b
66
c
67
d
68
You can use the charCodeAt function to achieve this.
charCodeAt
Working example:
function showKeyCode () { var character = document.getElementById("character").value.substring(0, 1); var code = document.getElementById("character").value.charCodeAt(0); var msg = "The Key Code for the "" + character + "" character is " + code + "."; alert(msg); }
<input type="text" id="character" size="15"> <input type="button" value="Show Key Code" onclick="showKeyCode();">
1.4m articles
1.4m replys
5 comments
57.0k users