I will get a Char from keydown
event.
In all browsers I can use event.key
and it works fine, but in android the result is something else:
event.key: unidentified
event.code: ''
event.which: `229` (for [a-z0-9] is always this number)
window.event.keyCode: `229`
Here is an old stackoverflow post, but it doesn't work any more.
codepen demo for test in android (IOS and PC work fine)
How can i get key code or key string from KeyboardEvent