Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know- there are lots of topics concerning this, BUT even though I did look through a bunch of them couldn't figure the solution.. I'm converting char to hex like this:

char c = i;
int unicode = c;
string hex = string.Format("0x{0:x4}", unicode);

Question: how to convert hex to char back?

share|improve this question
Are you asking about a hex string? – Oded Dec 6 '11 at 12:45
yes, I want to convert "string hex" back to char – Min0 Dec 6 '11 at 12:47

2 Answers

up vote 8 down vote accepted

You could try:

hex = hex.Substring(2); // To remove leading 0x
int num = int.Parse(hex, NumberStyles.AllowHexSpecifier);
char cnum = (char)num;
share|improve this answer
FormatException - "String was not in a correct format". – Oded Dec 6 '11 at 12:50
Thanks @Oded, I didn't see leading "0x", my mistake. – Marco Dec 6 '11 at 12:53
Thanks, this solution works perfectly. – Min0 Dec 6 '11 at 12:54
oh! thanks for saying this - had no idea about it.. (: – Min0 Dec 7 '11 at 10:51
using System;
using System.Globalization;

class Sample {
    static void Main(){
        char c = 'あ';
        int unicode = c;
        string hex = string.Format("0x{0:x4}", unicode);
        Console.WriteLine(hex);
        unicode = int.Parse(hex.Substring(2), NumberStyles.HexNumber);
        c = (char)unicode;
        Console.WriteLine(c);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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