Hello,
I just discovered that we can use unicode anywhere in the program.
EG :
public class CheckUnicode {
public static void m\u0061in(String\u005B\u005D args) {
System.out.println("Hello World!");
}
}
\u0061 = 'a' .. \u005B = ''
This program will execute fine without any errors.
But what i want to know is, Whats the benefit of using unicode in program ?
Waiting for your views and suggestions.
Regards,