fromCharCode
Create a string from a Unicode character code (code point).
code(required): integer code point
utlx
fromCharCode(65) // "A"
fromCharCode(8364) // "€"
{
char: fromCharCode($input.code)
}