I have one line in a PHP script
$ str = "इन रिकॉर्ड्स पर है सलमान की नजर, धूम -3 को पछाड़ेगी जय हो?";
and converting it from the code below:
$encoded_string = bin2hex(mb_convert_encoding($str, "UTF-16BE", 'UTF-8'));
Mobile device output:
इन रिकॉ (zero width is displayed here without a joiner) र्ड्स पर है सलमान की नजर, धूम -3 को पछाड़ेगी जय हो?
but getting Zero-Width Non-Joiner * * in the final release. How can I remove this object when converting a string after receiving the final output?
source
share