I've a following string received from server.
body = "Subject: This is from webportal \nTo: My Account \n...\n\n\nLTD Emojis:100k:ltd:eyes:trophy \nDefault Emoji \\ud83d\\ude1b\\ud83d\\ude31\\ud83d\\ude0d \\ud83d\\ude3b\U00a0\\ud83d\\ude48 \n-- \nStephen acc";
I want to remove "\U00a0"from string. Here is code to remove that but its not working.
testString=[testString stringByReplacingOccurrencesOfString:@"\\U00a0" withString:@""];
is there any other way to get this thing done.