I have the following String
of characters.
string s = "\u0625\u0647\u0644";
When I print the above sequence, I get:
u0625u0647u062
How can I get the real printable Unicode characters instead of this uxxxx representation?
I have found the answer:
s = System.Text.RegularExpressions.Regex.Unescape(s);
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…