In PHP manual stated that
\u{[0-9A-Fa-f]+} the sequence of characters matching the regular expression is a Unicode codepoint, which will be output to the string as that codepoint's UTF-8 representation (added in PHP 7.0.0)
echo "\101"; //Output A
echo "\x41"; // Output A
echo "\u0041"; //But its now working. output same as \u0041
i am unable to understand \u