Regex.Unescape
did the trick:
System.Text.RegularExpressions.Regex.Unescape(@"Schu00f6nen");
Note that you need to be careful when testing your variants or writing unit tests: "Schu00f6nen"
is already "Sch?nen"
. You need @
in front of string to treat u00f6
as part of the string.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…