Sub Chr($code As Integer) As Char
Returns the character that corresponds to the specified character code.
Parameters
- $code ... Integer expression that represents the character code.
Example:
Dim $s
$s = "This text"
$s = Insert($s, 6, "is a ")
' returns $s = "This is a text"