I can successfully add emoji (i.e. utf8mb4 data) to tables using mysql using the terminal.
When my Python Flask website tries to send emoji to the same database tabl
If you want to store unicode character into the database you need to Define column character set to utf8mb4.
utf8mb4
Also change character set of table if it is required.
it will help you store data in unicode formate
Thanks