返回指定位置的字符的 Unicode 编码。这个返回值是 0 - 65535 之间的整数。
stringObject.charCodeAt( index );
index - 必需。表示字符串中某个位置的数字,即字符在字符串中的下标。
var Str = "graybobo", s = Str.charCodeAt( 6 ); console.log( s );
>>> 98