String.fromCharCode(event.keyCode);
alert( [String.fromCharCode(65), String.fromCharCode(97)] );
$("body").keydown(function (e) { alert(e.keyCode); });