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