Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find a list of keyboard keycodes? [closed]

Is there a place where I can find all the keycodes for keys on a keyboard? (For example, the key up may be #114)

I can't seem to find one no matter what I search :(

Thanks!

like image 243
PHPNooblet Avatar asked Oct 26 '09 23:10

PHPNooblet


People also ask

What are keyboard Keycodes?

Key codes are numeric values that correspond to physical keys on the keyboard but do not necessarily correspond to a particular character.


2 Answers

Here's a list of keycodes that includes a way to look them up interactively.

like image 162
Pablo Avatar answered Oct 19 '22 04:10

Pablo


I know this was asked awhile back, but I found a comprehensive list of the virtual keyboard key codes right in MSDN, for use in C/C++. This also includes the mouse events. Note it is different than the javascript key codes (I noticed it around the VK_OEM section).

Here's the link:
http://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx

like image 23
Codesmith Avatar answered Oct 19 '22 05:10

Codesmith