when I insert data into mysql database Serbian letter like č looks like Ä and ć looks like ć. In header I have:
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
and encoding is set to utf8_unicode_ci so I don't know where is the problem...
When I put
mysqli_set_charset($connection, "utf8");
before insert, then in mysql is looking good, but in my app ć is appear as symbol ?
Where am I wrong?