Reputation: 6490
So, how would I display this set of characters in Java console application without using Unicode, if possible?
♦ ♥ ♣ ♠
They are created by pressing Alt
+ (3/4/5/6)
button combination.
Upvotes: 2
Views: 15621
Reputation: 15481
With Unicode this is a simple problem:
System.out.println("UNICODE IDENTIFIER GOES HERE");
Without Unicode? I don't think it can be done.
Upvotes: 0