Unicode in Java
One minute read in JVMHow many times “Hello World!” will be printed? 😉
public class Main {
public static void main(String... args) {
// The comment below is no typo.
// \u000d System.out.println("Hello World!");
System.out.println("Hello World!");
}
}