Hello,

I want to insert unicode character in a CString object using Format method.

CString sBuf;
int iCar = 0xB2; <----------------------- I would like to set 0x03B2
sBuf.Format("Car is %c", iCar);

How can I do that ?

Thanks to all.