Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Write a java Program to Display Number And Character Using UNICODE.
- class Ex11 // Ex11 is FileName
- {
- public static void main(String args[])
- {
- System.out.println(\u0030);
- System.out.println(\u0032);
- //Single Code Use For Print Character
- System.out.println('\u02C9');
- }
- }
Add Comment
Please, Sign In to add comment