keecode logokeecode

ç

188

c cedilla

event.keyCode

188

event.key

ç

event.code

Comma

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