Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

public class Main {
    public static void main(String[] args) {
        for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) {
            if (Character.isSurrogate(ch)) {
                String s = String.format("\\u%04x", (int) ch);
                System.out.println(s);
            }
        }

    }
}