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?
You can use the following code:
label1.Text = System.Convert.ToChar(System.Convert.ToUInt32("0x00AC", 16)).ToString();