keecode logokeecode

x

88

x

event.keyCode

88

event.key

x

event.code

KeyX

Unicode

n/a

Code Examples

Copy and paste these examples to detect the x key in your JavaScript code

Recommended modern approach

// Modern approach (recommended)
document.addEventListener('keydown', (e) => {
  if (e.key === 'x') {
    console.log('x key pressed!');
    // Your code here
  }
});

Related Keys

Other keys commonly used together or in similar contexts