CString CStringUtf8ToUnicode( CString Utf8 ) { int wLen = 0; CString strUnicode; LPSTR pBufChar = NULL; LPWSTR pBufWchar = NULL; //CString to char wLen = WideCharToMultiByte(CP_ACP, 0, Utf8, -1, NULL, 0, NULL, NULL); pBufChar = new char[wLen + 1]; me…