What is the (default) charset for:
MySQL database
MySQL table
MySQL column
For databases:
USE your_database_name; show variables like "character_set_database"; -- or: -- show variables like "collation_database";
Cf. this page. And check out the MySQL manual