JavaScript String charCodeAt()
charCodeAt 可以用來取得字串特定位置的字元的 Unicode 編碼 (Unicode code point)。
語法:
str.charCodeAt(index)
參數 index 代表位置,從 0 開始算。
用法:
var str = 'hello world';
// 輸出 104
console.log(str.charCodeAt(0));
// 輸出 101
console.log(str.charCodeAt(1));