Link Search Menu Expand Document

String.FromCharCode Method

Explanation Create a character string from the character code.
This method is a static method. It can be called without creating an object.
Call format var str = String.FromCharCode( code_1 [, code_2 [, … [, code_n ] ] ] )
Return value Created string
Arguments integer code_n Shift_JIS character code
Only the lower 16 bits (2 bytes) are valid.
Exception None
Example of use
var str = String.FromCharCode(0x41, 0x42, 0x43);
print(str, "\n");
    
Related item