keecode logokeecode

7

55

7 Key

event.keyCode

55

event.key

7

event.code

Digit7

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