[C#]Decode Unicode Character
if (!match.Success)
return string.Empty;
var code = match.Groups["code"].Value;
int value = Convert.ToInt32(code, 16);
return ((char)value).ToString();
}</pre>
if (!match.Success)
return string.Empty;
var code = match.Groups["code"].Value;
int value = Convert.ToInt32(code, 16);
return ((char)value).ToString();
}</pre>