keecode logokeecode

ü

89

u with umlaut

event.keyCode

89

event.key

ü

event.code

KeyY

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