i have string "কালের কণà§à¦". I need to convert all the characters of this string into english characters and numbers. I need to do it in php. Is it possible? The code i currently have isn't working properly. it just just giving me a string consisting of only question marks. the code is given below -
$str = mb_convert_encoding($str, 'ASCII', 'utf-8');
echo $str;
Thanks in advance.