Say i have a string like that
"title": "\u041e\u0434\u0440\u0438\u043d\u044f-\u0423\u0440\u0431\u043e\u0432\u0430 ...
What would be the best way of getting it back to normal?
I tried
byte[] b = stringBuilder.toString().getBytes();
String jstring = new String(b,"UTF-8");
yet no luck, it stays the same.
Thanks.