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

import java.util.*;
import java.lang.*;
import java.text.*;

/* 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
	{
		// imprime o caractere e o respectivo codepoint, para todos que correspondem a "H" em NFKC
        for (int codepoint = 0; codepoint <= Character.MAX_CODE_POINT; codepoint++) {
            String str = new String(Character.toChars(codepoint));
            if ("H".equals(Normalizer.normalize(str, Normalizer.Form.NFKC))) {
                System.out.printf("%04X - %s - %s\n", codepoint, str, Character.getName(codepoint));
            }
        }
	}
}