I have the following String of characters
string s = "\\u0625\\u0647\\u0644";
When I print the above sequence, I get:
\u0625\u0647\u062
How can I get the real printable unicode characters instead of this \uxxxx representation?
-- EDIT --
I have found the answer:
s = System.Text.RegularExpressions.Regex.Unescape(s);