<?php $string = '������'; var_dump([ strlen($string), // 4 mb_strlen($string, 'UTF-8') // 1 ]);
alert('������'.length);// 2