I have an issue in a program where I am detecting key presses. All characters are working on QUERTY keyboards but I am aware of issues with certain characters on AZERTY keyboards.
For example, when \ is pressed on an AZERTY keyboard, it is given the keycode of 226 (â).
How can I ensure that the behaviour is consistent across keyboard layouts? I expected the inbuilt event handling to be consistent.
You might want to first detect the keyboard layout and then use a different keycode to character mapping.