I had to replace all character occurrence in string. For example:
string a = "202F";
string b = $"\u{a}"; # There is an error - unrecognized escape character
Regex pattern = new Regex($"[{b}]");
n = pattern.Replace(n, "_");
How to make UTF-8 code from variables?