Skip to content

Latest commit

 

History

History
68 lines (57 loc) · 1.96 KB

CHR$.org

File metadata and controls

68 lines (57 loc) · 1.96 KB

Top | Up (String) | < Previous (PAGE NAME) | Next (PAGE NAME) >

CHR$

Returns a character from a specified character code (UCS-2)

Syntax

CHR$ value% OUT string$
ParameterDescription
value%A number corresponding to a UCS-2 character code.
OutputDescription
string$The string character corresponding to the value% code.

If value% is a float number, it will be truncated down.

Examples

PRINT CHR$(33) ' !
PRINT CHR$(&H004D) ' M
PRINT CHR$(&H30C8) ' ト

See Also:


Top | Up (String) | < Previous (PAGE NAME) | Next (PAGE NAME) >