NumpadEnter key code — keyCode 13
Numpad
NumpadEnter has keyCode 13 and key Enter, at location 3. It shares that number with Enter.
location is 3, which is what tells it apart from the number row.
- code (position)
- NumpadEnter
- key (US layout)
- Enter
- keyCode (deprecated)
- 13
- Hexadecimal
- 0x0D
- location
- 3 · Numpad
- Types a character
- No
- Shares keyCode with
- Enter
In code
Comparing against code keeps working when the layout changes.
window.addEventListener('keydown', e => {
if (e.code === 'NumpadEnter') {
// Enter
}
});code versus key
code is the physical position, the same on a Korean or French keyboard. key is what gets typed and changes — the same spot gives a, A or ㅁ. Use code to ask which spot was pressed, key to ask what was entered.
keyCode has been dropped from the standard. Write new code against code or key; the numbers here are for reading old code.
Keys of the same kind
How to read this
- code is the position, key is the character typed. Match on code for shortcuts.
- keyCode is deprecated; use it only to read old code.
- Left and right Shift share a keyCode and are told apart by location.
- The 1 on the number row and the 1 on the numpad are different keys — 49 and 97.
Frequently asked questions
Q. What is the keyCode for NumpadEnter?
13, or 0x0D in hexadecimal.
Q. How do I match NumpadEnter in code?
Compare with e.code === 'NumpadEnter'. Matching on keyCode wobbles between browsers and layouts.
Q. What is this key's location?
3. It shares a keyCode with Enter, so you need this value to tell them apart.
Q. Does this key type a character?
No. key is Enter and nothing is entered.