I want to get the codepoint for each character in this string "عربى" so I write this code but it always output 63 which is the codepoint of the question mark character "?"
TCHAR myString[50] = _T("عربى");
int stringLength=_tcslen(_T(myString));
for(int i=0;i<stringLength;i++)
{
unsigned int number =myString[i];
cout<<number<<endl;
}
any suggestions ? :)