fromCharCode

メソッド Type method
String.fromCharCode(文字コード) Format String.fromCharCode (code letter)
Commentary
文字コードを文字に変換します。 Characters and character codes. 文字コードは,(カンマ)で区切って連続して書くことができます。 Character code, (comma) can be separated by a row.
サンプルコード Sample code
str = String.fromCharCode(66); str = String.fromCharCode (66);
outputs[0] = str; outputs [0] = str;