StringLib.fromCharCode returns a UNICODE character that corresponds to an integer representation.
eglx.lang
static function fromCharCode(c int in) returns(string);
If the character does not exist or cannot be displayed, the returned character is not meaningful.
After the following code runs, the value of result is “A”.
result STRING = StringLib.fromCharCode(65);
Target | Issue |
---|---|
Java | No issues. |
JavaScript | No issues. |