Top | Up (String) | < Previous (PAGE NAME) | Next (PAGE NAME) >
Returns a character from a specified character code (UCS-2)
CHR$ value% OUT string$
Parameter | Description |
---|---|
value% | A number corresponding to a UCS-2 character code. |
Output | Description |
---|---|
string$ | The string character corresponding to the value% code. |
If value%
is a float number, it will be truncated down.
PRINT CHR$(33) ' !
PRINT CHR$(&H004D) ' M
PRINT CHR$(&H30C8) ' ト
Top | Up (String) | < Previous (PAGE NAME) | Next (PAGE NAME) >