以下のメソッドは、AZ と 0-9 の任意のキーを返します。Shift キー + 4 を押すと、同じコード 52 が返されます。
function keyUpEvent(e)//onkeyup event
{
var chr = String.fromCharCode(e.keyCode);//converts the keycode into a character
alert(chr);//alerts the character
}
しかし、シフトキーの組み合わせでそれぞれのキーが押されたときに$ または %を表示する必要があります。