I was wondering if there was an eqivlant to asc() and chr()
functions in C for unicode characters ?
Printable View
I was wondering if there was an eqivlant to asc() and chr()
functions in C for unicode characters ?
If you have a unicode character in a wchar_t you can simply use it as a number.
Code:wchar_t* myString=L"someString";
myString[0]+=1;
i looked into it now it tis sorted
thanks mate