...
Converting a number to a string is easy enough:
3 asString #=> "3"
However, integers are also used to represent bytes, which make up the characters in a string. To convert a byte to a character, use asCharacter:
asCharacter
97 asCharacter #=> "a"