devxlogo

Converting Character Codes to Alphanumeric Characters

Converting Character Codes to Alphanumeric Characters

When you trap a keyboard event with any of the keyboard event handlers (onKeyUp, onKeyDown, or onKeyPress), the event object’s keyCode property contains the character value of the key that triggered the event. However, the value in keyCode is a character code (Unicode in Internet Explorer and ASCII in Navigator), not an alphanumeric character.

To do the conversion, you can use the JScript String method, ‘fromCharCode’. The JScript statement below is an example of how it’s done:

 var charCode = String.fromCharCode(e.keyCode);

The keyCode property of e, the event that was trapped by the event handler, is sent to the String method ‘fromCharCode’. It converts the character code representation of the character to an alphanumeric character and assigns it to the variable ‘charCode.’

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist