Below is a table of key codes. If this table is inconsistent with your own findings, please let me know.
Put your cursor in the box and press a key. (The code for this textbox is at the bottom of this page.)
Example Textbox <input type="text" name="txtExample" id="txtExample" onkeyup="AlertKeycode(event);" />
Javascript Code <script type="text/javascript"> function AlertKeycode(evnt){ var key = evnt.keyCode? evnt.keyCode : evnt.charCode; alert(key); } </script>