Open In App

HTML | KeyboardEvent which Property

Improve
Improve
Like Article
Like
Save
Share
Report

The KeyboardEvent which property is used for returning the Unicode character code of the key which triggers the onkeypress event. It also returns the Unicode key code of the key that triggered the onkeydown or onkeyup event.
The key code is a number which represents an actual key on the keyboard, unlike the character codes which represents the ASCII character.

Syntax :

event.which

Below program illustrates the KeyboardEvent which property :
Example: Returning the Unicode character code of the key.




<!DOCTYPE html>
<html>
  
<head>
    <title>KeyboardEvent which Property in HTML</title>
    <style>
        h1 {
            color: green;
        }
          
        h2 {
            font-family: Impact;
        }
          
        body {
            text-align: center;
        }
    </style>
</head>
  
<body>
  
    <h1>GeeksforGeeks</h1>
    <h2>KeyboardEvent which Property</h2>
  
    <p> To get the Unicode character code of the key, 
      Press the key on the keyboard in the input field.</p>
  
    <input type="text" size="50" onkeypress="MyEvent(event)">
  
    <p id="test"></p>
    <!-- Script to return Unicode Value. -->
    <script>
          
        function MyEvent(event) {
            var e = event.which;
            document.getElementById("test").innerHTML = 
              "Unicode value of the pressed key is: " + e;
        }
    </script>
  
</body>
  
</html>


Output:

After clicking the button

Supported Browsers:

  • Opera
  • Internet Explorer
  • Google Chrome
  • Firefox
  • Apple Safari


Last Updated : 17 Jan, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads