ª
57
feminine ordinal indicator
event.keyCode
57
event.key
ª
event.code
Digit9
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