Keyboard Event Viewer (event.key / event.code / keyCode)
Press any key on your keyboard (anywhere on this page) to see its live event.key, event.code, and legacy event.keyCode values below, along with modifier state, repeat, and physical location. Nothing is sent anywhere — the listener runs entirely in your browser.
Waiting for a key press…
Keys pressed this session: 0
Common key reference
A few frequently-looked-up key / code / keyCode combinations — press the actual key above to confirm it on your own keyboard and browser, since keyCode in particular varies by layout and OS.
| Key | event.key | event.code | event.keyCode |
|---|---|---|---|
| Space | " " | Space | 32 |
| Enter | "Enter" | Enter | 13 |
| Escape | "Escape" | Escape | 27 |
| Tab | "Tab" | Tab | 9 |
| Backspace | "Backspace" | Backspace | 8 |
| Delete | "Delete" | Delete | 46 |
| Arrow Up | "ArrowUp" | ArrowUp | 38 |
| Arrow Down | "ArrowDown" | ArrowDown | 40 |
| Arrow Left | "ArrowLeft" | ArrowLeft | 37 |
| Arrow Right | "ArrowRight" | ArrowRight | 39 |
| Letter A | "a" | KeyA | 65 |
| Digit 1 (top row) | "1" | Digit1 | 49 |
| Numpad 1 | "1" | Numpad1 | 97 |
| Left Shift | "Shift" | ShiftLeft | 16 |
| Left Ctrl | "Control" | ControlLeft | 17 |
| Left Alt | "Alt" | AltLeft | 18 |
| Meta / Cmd / Win | "Meta" | MetaLeft | 91 |
| Caps Lock | "CapsLock" | CapsLock | 20 |
| F1 | "F1" | F1 | 112 |