It doesn't. It is 8 pts and is hard coded. I have modified charmap (for those who can't see 8 pt like me) to make it bigger. I won't post it as you want yours smaller.
If you don't believe me here is the code for the dialog (see line 6). MS Shell Dlg is a virtual font. It is mapped to another font here in the registry
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes
If the font is wierd then it may be damaged and windows has chosen what it thinks is the closest (but it;s a computer and is deaf, dumb, and blind so don't expect it to be that good a match). Look up the font being used and test it to see if it works and repace if not.
UCE DIALOG 10, 40, 294, 294
STYLE WS_MINIMIZEBOX | WS_POPUP | WS_CLIPSIBLINGS | WS_CAPTION | WS_SYSMENU
CAPTION "Character Map"
CLASS "MyDlgClass"
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
FONT 8, "MS Shell Dlg"
{
CONTROL "Ch&aracters to copy :", 107, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE, 7, 193, 63, 8
CONTROL "", 104, "RICHEDIT20W", ES_LEFT | ES_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 76, 190, 103, 16
CONTROL "&Select", 103, BUTTON, BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 183, 190, 50, 14
CONTROL "&Copy", 102, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 237, 190, 50, 14
CONTROL "Ad&vanced view", 119, BUTTON, BS_CHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 7, 207, 64, 12
CONTROL "Charac&ter set :", 129, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE, 7, 228, 63, 8
CONTROL "", 130, COMBOBOX, CBS_DROPDOWNLIST | CBS_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 76, 225, 103, 76
CONTROL "Go to &Unicode :", 700, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE | WS_GROUP, 183, 229, 50, 8
CONTROL "", 701, EDIT, ES_LEFT | ES_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 237, 225, 25, 14
CONTROL "&Group by :", 201, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE, 7, 246, 63, 8
CONTROL "", 202, COMBOBOX, CBS_DROPDOWNLIST | CBS_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 76, 243, 103, 76
CONTROL "S&earch for :", 131, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE, 7, 265, 63, 8
CONTROL "", 132, EDIT, ES_LEFT | ES_MULTILINE | ES_AUTOHSCROLL | ES_WANTRETURN | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP, 76, 261, 103, 14
CONTROL "Sea&rch", 133, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 183, 261, 50, 14
CONTROL "&Font :", 141, STATIC, SS_LEFT | WS_CHILD | WS_VISIBLE, 7, 9, 20, 8
CONTROL "", 105, COMBOBOX, CBS_DROPDOWNLIST | CBS_OWNERDRAWFIXED | CBS_SORT | CBS_HASSTRINGS | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 31, 7, 202, 76
CONTROL "&Help", 100, BUTTON, BS_PUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 237, 7, 50, 14
}
--