In case you want to store special characters inside of
#database #mysql #charset #character_set #collate #utf8 #utf8_unicode_ci #alter
MySQL
table field, you need to change the table encoding like below:ALTER TABLE YOUR_TABLE CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;
#database #mysql #charset #character_set #collate #utf8 #utf8_unicode_ci #alter