vote up 3 vote down star

What is the best way to convert an Int value to the corresponding Char in Utf16, given that the Int is low enough?

Boaz

flag

61% accept rate

3 Answers

vote up 7 vote down check
(char)myint;

for example:

Console.WriteLine("(char)122 is {0}", (char)122);

yields:

(char)122 is z

link|flag
vote up 7 vote down
    int i = 65;
    char c = Convert.ToChar(i);
link|flag
vote up 0 vote down

Although not exactly answering the question as formulated,but if you need or can take the end result as string you can also use

string s = Char.ConvertFromUtf32(56)

which will give you surrogate utf16 pairs if needed, protecting you if you are out side of the BMP.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.