charCodeAt
種類
メソッド
書式
文字列.charCodeAt(位置)
解説
指定された位置の文字コードを返します。
サンプルコード
str = "A";
n = str.charCodeAt(0);
outputs[0] = n;
実際のスクリプトを
ダウンロード