010 Editor template: convert a int to wchar_t

174 Views Asked by At

I'm reading a single wchar_t character from a binary file in 010 template in this way

wchar_t character;

it will give me for example 64 for @, after that I need to add 0x20 to the 64 so it should be 96 now
my question is how can I convert the output after add operation to wchar_t (or string) again in 010 template?

0

There are 0 best solutions below