'1' use two bytes 20 and 0; '2' use two bytes 21 and 0;
'a' use two bytes 68 and 0; 'b' use two bytes 69 and 0;
I'm hook func ExtTextOutW from GDI32.dll(windowsapi) ,and read from str(unsigned char); such as abc123... while got:68 0 69 0 70 0 20 0 21 0...;
BOOL ExtTextOutW
(
HDC hdc,
INT x,
INT y,
UINT flags,
const RECT* lprect,
LPCWSTR str,
UINT count,
const INT* lpDx
)