using System; using System.Text.RegularExpressions; public class Test { public static void Main() { string escaped = @"Hello\thello\nWorld!"; string res = Regex.Unescape(escaped); Console.WriteLine(res); } }