Chr()

Returns the character represented by the ascii value

Usage

STRING = Chr( number )
Argument Summary
number ascii number

Calling

Supports named-parameter calling allowing you to use the function like:

Chr(
   number=?
);

Supports passing parameters as a structure using ArgumentCollection:

Chr( ArgumentCollection={
   number : ?
} );