hex to ascii conversion
how to convert 80-FF hex to ascii (extented Ascii).
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Prasant JinagaPosted Nov 16, 2012, 10:21 AM
Here is the code to convert Hexadecimal value to ascii code
Sivaraman DhamodaranPosted Nov 16, 2012, 8:04 AM
string hex_num = "80FF";
int code = Convert.ToInt32(hex_num, 16);
string converted = Encoding.Default.GetString(new byte[] { (byte)code } );