/* package whatever; // don't place package name! */

import java.util.*;
import java.util.regex.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
        Matcher matcher = Pattern.compile("\\s", Pattern.UNICODE_CHARACTER_CLASS).matcher("");
        for (int i = 0; i <= Character.MAX_CODE_POINT; i++) {
            String s = new String(new int[] { i }, 0, 1);
            matcher.reset(s);
            if (matcher.find()) {
                System.out.printf("%06X, %s\n", i, Character.getName(i));
            }
        }
        }
}