I have a form on my MVC website that allows the user to enter emoji characters as part of the text they submit.
My MySQL 5.6 database is primarily set to UTF8 but on the table that accepts this data I have set the field and table to:
Character Set: utf8mb4
Collation: utf8mb4_unicode_ci
However, when I insert the data, I can see at the point of entry into the table it encodes the emoji character as ?????
. All other standard text remains intact.
Am I missing anything? I've seen articles like this which I've used to guide me: http://blog.arkency.com/2015/05/how-to-store-emoji-in-a-rails-app-with-a-mysql-database/
Any help would be greatly appreciated!
Thanks