I have received string from webservice which contains Unicode character. I want to convert that To plain NSString. so How can i do that?
ex: \"This isn\\u0092t your
There is a library which does conversion https://github.com/alexaubry/HTMLString. It will convert all kind of Unicode character.
let escapedSnack = "Fish & Chips" let snack = escapedSnack.removingHTMLEntities // "Fish & Chips"