You need to configure your database connection like the following:
$db = new mysqli('localhost', 'username', 'password', 'db_name');
if ($db->connect_error) {
die("Connection failed: " . $db->connect_error);
}
$db->query("SET character_set_client='utf8mb4'");
$db->query("SET character_set_results='utf8mb4'");
$db->query("set collation_connection='utf8mb4_bin'");
And ensure your HTML file is UTF-8, have the following in between the head tags:
Hope it helps. Cheers!