Skip to main content
DevTools24

KeyCode फाइंडर

कीबोर्ड इवेंट कोड खोजें।

Press any key to see its codes

Click anywhere on the page and press a key

Note: keyCode and which are deprecated. Use key for character and code for physical key.

Keyboard Events - तकनीकी विवरण

Modern browsers use event.key (character) and event.code (physical key). The legacy keyCode property is deprecated but still widely used for compatibility.

कमांड-लाइन विकल्प

// JavaScript keyboard event listener
document.addEventListener('keydown', (e) => {
  console.log('key:', e.key);
  console.log('code:', e.code);
  console.log('keyCode:', e.keyCode);
});

संदर्भ

आधिकारिक स्पेसिफिकेशन देखें