Unicode system example 2 - Java Program

Java Programming Language / Variables in java

1750

Program:

 public class UnicodeSystem {
    public static void main(String[] args) {
         char c = '\u0077';
		     System.out.println(c);
  }
}

Output:

w
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.