smk pobon
smk pobon

Reputation: 111

What is the Key code of the key in the image below in JAVA?

enter image description here

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

Answers (1)

SagaFreya
SagaFreya

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

Related Questions