How can I convert string with special chars, like this:
małoletni => ma\u0142oletni
Where ł
converts into \u0142
(the same with rest special chars).
I've tried with
System.Text.UnicodeEncoding encoding = new System.Text.UnicodeEncoding();
but it returns strange results.
How can I convert it?