F9
120
f9
event.keyCode
120
event.key
F9
event.code
F9
Unicode
n/a
Code Examples
Copy and paste these examples to detect the F9 key in your JavaScript code
Recommended modern approach
// Modern approach (recommended)
document.addEventListener('keydown', (e) => {
if (e.key === 'F9') {
console.log('F9 key pressed!');
// Your code here
}
});Related Keys
Other keys commonly used together or in similar contexts