Reputation: 75
Look at this Code:
string s = "0x00A5";
Console.WriteLine(((char)s).ToString()); //Error
Console.WriteLine(((char)0x00A5).ToString());
I know why there is an error but i have no Idea how to solve this.
Any suggestions?
Edit:
string stringHex = "7A";
int intFromHex = int.Parse(stringHex , System.Globalization.NumberStyles.HexNumber) + 30;
string hex = intFromHex.ToString("X");
switch(hex.Length)
{
case 2:
hex = "0x00" + hex;
break;
case 3:
hex = "0x0" + hex;
break;
case 4:
hex = "0x" + hex;
break;
}
char c = (char)hex;
string s = "0x00A5";
Console.WriteLine(((char)s).ToString());
Console.WriteLine(((char)0x00A5).ToString());
This is the whole Code. Im trying to generate a string with random unicode Chars.
Upvotes: 1
Views: 8915
Reputation: 13684
Try this
int val = Convert.ToInt32("0x00A5", 16);
char c = Convert.ToChar(val);
or
char c = (char)(Convert.ToInt32("0x00A5", 16));
Upvotes: 3
Reputation: 186843
If you want to convert just one symbol, put Convert
:
string s = "0x00A5";
// ¥
string result = ((char)Convert.ToInt32(s, 16)).ToString();
If you want to convert several ones you have to extract them with regular expressions:
string s = "0x00A50x00200x0048";
// ¥ H
string result = Regex.Replace(s, "0x[0-9A-Fa-f]{4}",
match => ((char)Convert.ToInt32(match.Value, 16)).ToString());
Upvotes: 6