I want to print out the ASCII/unicode representation of hearts, clubs, spades and diamonds
instead of saying with strings...
String suits[] = { "Hearts", "Diamonds", "Clubs", "Spades" };
I tried this
String suits[] = { "\u2665", "\u2666", "\u2663", "\u2660" };
when printing I got a ?
http://www.fileformat.info/info/unicode/char/2660/index.htm I noticed this...string.toUpperCase()
my unicode is rusty...