ASCII Fun

ASCII art like the greeting above is common, but ASCII characters are useful for a lot more.  Represented in a Java in a manner identical to the first 128 unsigned integers, they can be substituted for ints at any time, and ints 32 -126 inclusive can be cast to chars and printed.  While limited compared to the unicode set of characters (ASCII can’t represent á, for example), ASCII is the workhorse of most file systems.

Continue reading “ASCII Fun”