I have parsed some data from webpage content and stored it as an NSString. In that string there is a unicode character (\u0097). How can i remove or replace this and avoid all unicode characters?
I tried using this line but it hasn't worked:
[webpagecontent stringByReplacingOccurrencesOfString:@"\\u0097" withString:@" "];
Can anyone help me?
Thanks in advance.........