JavaScript Key Code 111
111
Key Code Information
event.key
/
The value of the key pressed. Accounts for modifiers keys that return CAPS and alternate chars.
event.location
Numpad
Some keys exist more than once on your keyboard. This provides the location of the key pressed. Try it with both shifts.
event.code
NumpadDivide
The physical key on the keyboard. Doesn't care if you are holding a modifier like Shift.
event.which
111
Event Dump
{ "key": "/", "keyCode": 111, "which": 111, "code": "NumpadDivide", "location": 3, "description": "divide", "unicode": "÷", "path": "/numpad-divide" }
Unicode
÷