public static string unicodetogb( string text)
{
System.Text.RegularExpressions. MatchCollection mc
= System.Text.RegularExpressions.Regex .Matches(text, "\\\\u([\\w]{4})");
string a
= text.Replace("\\u" , "");
char[]
arr = new char[mc.Count];
for (int i
= 0; i < arr.Length; i++)
{
arr[i] = ( char)Convert .ToInt32(a.Substring(i
* 4, 4), 16);
}
string c
= new string(arr);
return c;
}