Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 539 Bytes

how_do_you_convert_character_to_ascii_code.md

File metadata and controls

16 lines (9 loc) · 539 Bytes

How do you convert character to ASCII code?

In JavaScript, you can convert a character to its ASCII code using the charCodeAt() method. This method returns the Unicode (ASCII) value of the character at the specified index.

Example:

let char = 'A';
console.log(char.charCodeAt(0));  // Output: 65

Tags: basic, JavaScript, String Manipulation