While practicing Java I randomly came up with this:
class test { public static void main(String arg[]) { char x=\'A\'; x=x+1;
Each char has a character code. The computer sees a character as an unsigned number, so you can increment it.
char