charCodeAt
種 類
メソッド
書 式
文字列.
charCodeAt(位置)
解 説
指定された位置の文字コードを返します。
コード
str = "ABC";
c = str.charCodeAt(0);
alert("Aの文字コードは"+c+"番です");
■サンプルをダウンロードする
>>.zip