C# 如何将字符串形式的” \u1234 “ 为 “ u1234” 的unicode编码解码为中文

using System.Text.RegularExpressions;

decodedStr = Regex.Unescape(escapeUnicodeStr);
原文地址:https://www.cnblogs.com/huangcong/p/4381590.html