13
1
using System;
2
using System.Text.RegularExpressions;
3
4
public class Program
5
{
6
public static void Main()
7
{
8
var test1 = "Universidad de M\\u00e1laga";
9
var test2 = System.Text.RegularExpressions.Regex.Unescape(test1);
10
Console.WriteLine(test1);
11
Console.WriteLine(test2);
12
}
13
}
Cached Result