Type method
Format String.fromCharCode (code letter)
Commentary
Characters and character codes. Character code, (comma) can be separated by a row.
Sample code - QC 2 JavaScript
str = String.fromCharCode(66); str = String.fromCharCode (66);
outputs[0] = str; outputs [0] = str;
Sample code - QC 3 JavaScript
function (__string outputNumber) main ()
{
var result = new Object();
str = String.fromCharCode(66);
result.outputNumber = str;
return result;
}