Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. class war{
  2. public static void main(String args[]){
  3. char tee = '\u03A4';
  4. char ehh = '\u0397';
  5. char uuu = '\u040F';
  6. char ggg = '\u01E6';
  7. char lll = '\u013B';
  8. char aii = '\u038A';
  9. char eff = '\u0046';
  10. char eee = '\u0206';
  11. char lul = '\u00A9';
  12. System.out.println(tee);
  13. System.out.println( tee + "" + ehh + uuu + ggg + lll + aii + eff + eee + lul );
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement