EN
TypeScript - convert character to ASCII code
0
points
In this article, we would like to show you how to convert characters to ASCII code in TypeScript.
Quick solution:
// in case we want to convert a single character
const charInASCII: number = 'your char'.charCodeAt(0);
Note: default argument of the
charCodeAt()method is 0, socharCodeAt(0)can be replaced withcharCodeAt().
Practical example:
In the example below, we convert characters to ASCII code at subsequent positions in the string.
const exampleString : string = 'abc';
console.log(exampleString.charCodeAt(0)); // 97
console.log(exampleString.charCodeAt(1)); // 98
console.log(exampleString.charCodeAt(2)); // 99