I am passing a character from PHP to android. Character I am passing is ó.
I am passing it after doing URL encoding, as I am using GCM
But when I get the message on the phone it is displayed like this:
�
Is there any possible solution to solve this issue?
Solved the issue by replacing
urlencode($message);
with
utf8_encode($message);