Unicode in Java

One minute read in JVM

How 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!");
    }
}

answer


← Awesome Kotlin H2 database administration UI →