s = string.char (n1, n2, n3, ...)
Receives 0 or more numbers and converts them to the corresponding characters. The inverse operation is carried out by string.byte. print (string.char (65, 66)) --> AB
print (string.char (65, 66)) --> AB