Virajsinh

Java_11

Feb 11th, 2018
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. //Write a java Program to Display Number And Character Using UNICODE.
  2.  
  3. class Ex11 // Ex11 is FileName
  4. {
  5.     public static void main(String args[])
  6.     {
  7.         System.out.println(\u0030);
  8.         System.out.println(\u0032);
  9.        
  10.         //Single Code Use For Print Character
  11.         System.out.println('\u02C9');
  12.     }
  13. }
Add Comment
Please, Sign In to add comment