| Home CBM ASCII-X BASIC Disk Commands Enter RUN mode Program Format Secret Variables Variable Format Expressions Keywords (divide) (equal) (less) (minus) (more) (multiply) (plus) (power) Abs And Append Asc Atn Auto Backup Bank Begin Bend Bload Boot Box Bsave Bump Catalog Char Chr Circle Close Clr Cmd Collect Collision Color Concat Cont Copy Cos Data Dclear Dclose Dec Def Delete Dim Directory Dispose Dload Do Dopen Draw Ds Ds string Dsave Dverify El Else End Envelope Er Err Exit Exp Fast Fetch Filter Fn For Fre Get Get num Getkey Go Gosub Goto Graphic Gshape Header Help Hex If Input Input num Instr Int Joy Key Left Len Let List Load Locate Log Loop Mid Monitor Movspr New Next Not Off On Open Or Paint Peek Pen Pi Play Pointer Poke Pos Pot Print num Pudef Quit Rclr Rdot Read Record Rem Rename Renumber Restore Resume Return Rgr Right Rlum Rnd Rreg Rspcolor Rsppos Rsprite Run Rwindow Save Scale Scnclr Scratch Sgn Sin Sleep Slow Sound Spc Sprcolor Sprdef Sprite Sprsav Sqr Sshape St Stash Step Stop Str Swap Sys Tab Tan Tempo Then Ti Ti string To Trap Troff Tron Until Using Usr Val Verify Vol Wait While Width Window Xor Syntax Tokens C128 D64plus Disk Escape Codes Hardware PCxface PETSCII Pet2asc Futurama IBM PC-AT Contact Games Glossary Hall of fame Hall of shame Miscellaneous Privacy policy Programming Twisty puzzles |
CHR$ ( code )
Return the character which corresponds to a numeric code.
The CHR$ function simply returns a string containg the character with the given code. For a list of codes for the uppercase/graphics character set, see the ASCII-X page. For a list of codes for the lowercase/uppercase character set, see the PETSCII page. Actually the computer doesn't care which character set is used; but to the human viewing the characters, it can make a huge difference! Also note those tables have some duplicates; generally you can use either code to generate such characters, but the ones marked "Primary" are recommended as some devices or other software may not understand the "Alternate" code. The CHR$ function is especially usefull for generating characters that can't be entering as a literal value in a BASIC program: double-quote ("), RETURN, or NULL. You will get TYPE MISMATCH ERROR with a string expression or variable given for the code (the VAL function may help). A floating-point code will be converted to an integer (see INT). An ILLEGAL QUANTITY ERROR is generated if the code is not a Legal Value (see table above). Examples (uppercase/graphics character set):
Examples (lowercase/uppercase character set):
© H2Obsession, 2014 |