CHR$( n )

Description:

This function returns a one-character-long string, consisting of the character represented on the ASCII table by the value n (0 - 255).

Usage:

  print chr$(77)
  print chr$(34)
  print chr$(155)

Produces:

  M
  "
  ›