// Do something with the font just created...
CFont* def_font = pDC->SelectObject(&font);
char str[256]={(char)0xb5,(char)0xe7,0};//倒m倒h
pDC->TextOut(5, 5, str, 2);
pDC->SelectObject(def_font);
// Done with the font. Delete the font object.
font.DeleteObject();