chr function

String chr(
  1. int code
)

Get character from character code

Implementation

String chr(int code) {
  return String.fromCharCode(code);
}