I'm trying to limit the text "in Japanese" that will be displayed in some places of the page, it does not seem like php can handle this kind of character well.
Example php :
echo substr ("あ え い う お", 0, 3);
Here it shows only "あ" and should show "あ え い", that is 3 characters.
Then I tried with css:
style="overflow: hidden; width: 105px;"
In this case it simply ignores and does not limit anything, where all text with Japanese characters goes to the screen.