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