Character set and smart basic question
Posted: Thu Jun 25, 2015 8:03 pm
I was exploring the many characters available on my iPad with smart basic CHR$() command, and notices some nice ones that would work well in games.
My question is, would that show up the same on any apple device? Or is it special to my iPad. For example, the following code shows some great graphics I could use in programs. Would those images display on any iPad?
- Dav
My question is, would that show up the same on any apple device? Or is it special to my iPad. For example, the following code shows some great graphics I could use in programs. Would those images display on any iPad?
- Dav
Code: Select all
Set output font size "56"
'show soccer ball
print chr$(9917);
'frosty snowman
print chr$(9924);
'big star
print chr$(11088)
'show chess pieces
for t = 9812 to 9823
print chr$(t);
next t