In my mysql database, I use utf8mb4_general_ci
encoding.
In the CMS config, the UTF-8 header encoding is set ('Content-Type: text / html; charset = utf-8');
And also:
mysql_query ("set_client='utf8'");
mysql_query ("set character_set_results='utf8'");
mysql_query ("set collation_connection='utf8_general_ci'");
mysql_query ("SET NAMES utf8");
But if I send a request through PHP (If I use not Latin!), then in the database I get the following:
And vice versa, what is displayed normally in the database, passing through PHP breaks as a result.
What could be the problem?