keecode logokeecode

å

87

open mid back unrounded vowel

event.keyCode

87

event.key

å

event.code

KeyW

Unicode

å

Code Examples

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

Recommended modern approach

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

Related Keys

Other keys commonly used together or in similar contexts