I have a hexidecimal string with a length of 4, such as \"003a\".
What is the best way to convert this into a char? First convert to bytes and then to char?
First parse it using Int32.Parse(), then use Convert.ToChar() .