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