Reputation: 111
Exp: key code of '1' in java is VK_1 just like, What is the Key code of the marked key in the pic in java??
Upvotes: 1
Views: 830
Reputation: 13
According to http://docs.oracle.com/javase/7/docs/api/java/awt/event/KeyEvent.html it's:
VK_DEAD_TILDE
At least in Java 7. I'm not sure about Java 8.
Hope this helped!
Upvotes: 1