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;