I have setup a twiml app in twillio which forward/post all sms (which came to my twillio number) to a domain . On that domain i can get message body.issue is when some one send emojis in SMS . for this i did json_encode($sms->body); which show me emojis like this. "\u263a\ud83d\ude00\ud83d\ude01\ud83d\ude02\ud83d\ude03" (these are some emojis which came through SMS)
i did json_decode() as well for above text but it not shows me correct emojis icons. it shows like this (☺😀ðŸ˜ðŸ˜‚😃)
Which encoding or decoding i should use please help me.