I've this string in iOS app
Cat
then i pass this string in a POST request as parameter, but before i did:
NSString *nNick = [_stringNick stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
Now in PHP I get:
Cat%F0%9F%90%BC
The problem is in mysql database there is a record with this string:
CatðŸ¼
Now if I pass the string in php without stringByAddingPercentEscapesUsingEncoding
there is no issue.
But in this case select * from table where nick = 'Cat%F0%9F%90%BC'
return zero result.
How can I solve this issue without make an update to iOS app?
Thanks