mbstring extension provides enhanced support for Simplified Chinese, Traditional Chinese, Korean, and Russian in addition to Japanese.
I tried displaying a Japanese character (which I copied from www.google.co.jp) on my PHP page and it displayed fine. Do I need to use mbstring when I'm displaying UTF-32 characters?
EDIT:
<?php
echo "भ";
$s = strlen("भ");
echo $s;
?>
How do I make the second line of code to work?
PS: I have changed PHP default charset to UTF-8.