StringLib.fromCharCode function

StringLib.fromCharCode returns a UNICODE character that corresponds to an integer representation.

Package

eglx.lang

Syntax
static function fromCharCode(c int in) returns(string);
c
Takes the integer representation.

If the character does not exist or cannot be displayed, the returned character is not meaningful.

Example use

After the following code runs, the value of result is “A”.

result STRING = StringLib.fromCharCode(65);
Comments
Compatibility

Table 1. Compatibility
Target Issue
Java No issues.
JavaScript No issues.