Cataclysm
Cataclysm

Reputation: 8558

Icons for JAVA Character

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 ...

  1. What are these and has full list information for them ?
  2. When I use them , has any requirements (for instance : character code 9898 may not appear on Mac OSX) ?

Thanks in advance !

Upvotes: 0

Views: 267

Answers (1)

Akash Thakare
Akash Thakare

Reputation: 22972

It's Unicode Characters. See this Link For More Info.Click Here

Upvotes: 2

Related Questions