ö
80
o with umlaut
event.keyCode
80
event.key
ö
event.code
KeyP
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