keecode logokeecode

l

76

l

event.keyCode

76

event.key

l

event.code

KeyL

Unicode

n/a

Code Examples

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

Recommended modern approach

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

Related Keys

Other keys commonly used together or in similar contexts