in reply to How to print the dollar sign.

As there's FMTOWTDI I couldn't resist:

print chr(36); print chr(ord('$')); print chr(ord(chr(ord('$')))); # ad infinitum...;-) print "\x{024}";
I believe on a printer a print "S\x{08}|"; should work also.

Bye
 PetaMem