I have got two questions.
1 - I get Unicode code-points and how do I get the character associated with this code-point? Something like:
int code_point = 0xD24;
char* chr = (char*) code_point;
But the above code fails by throwing exception.
2 - Suppose the code-point is stored in a file and I read the code-point to a string, how do I convert that to valid Unicode string?
I am looking for a platform independent solution. Any help would be great!