Reputation: 8558
I am testing with Java Character and I got amazing thing for me. Please check below short codes..
char myChar = 9899;
for (int i = 0; i < 100; i++) {
System.out.println(myChar++);
}
When I run above codes , I saw many icons at my console . I would like to know ...
Thanks in advance !
Upvotes: 0
Views: 267
Reputation: 22972
It's Unicode Characters. See this Link For More Info.Click Here
Upvotes: 2