Site hosted by Angelfire.com: Build your free website today!
NAME
  ASC, CHR$ Functions

SYNOPSIS
  ASC(stringexpression$)
  CHR$(ascii-code%)

      _ stringexpression$    Any string expression.
      _ ascii-code%          The ASCII code of the 
                             desired character.

DESCRIPTION
  ASC returns the ASCII code for the first character in a string expression.
  CHR$ returns the character corresponding to a specified ASCII code.

Example:
    PRINT ASC("Q")    'Output is:  81
    PRINT CHR$(65)    'Output is:  A

SEE ALSO
  ASCII