Link Search Menu Expand Document

UString.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 = UString.FromCharCode(0x0041, 0x0042, 0x0043);
print(str, "\n");
    
Related item