9
105
Number Pad 9
event.keyCode
105
event.key
9
event.code
Numpad9
Unicode
⑨
Code Examples
Copy and paste these examples to detect the 9 key in your JavaScript code
Recommended modern approach
// Modern approach (recommended)
document.addEventListener('keydown', (e) => {
if (e.key === '9') {
console.log('9 key pressed!');
// Your code here
}
});Related Keys
Other keys commonly used together or in similar contexts