2019.03.23
MySQLコンソールから以下のコマンドを実行してください。
現在の文字コードの設定値を確認できます。
1 | mysql> SHOW VARIABLES like 'char%'; |
1 2 3 4 5 6 7 8 9 10 11 12 13 | +--------------------------+----------------------------+ | Variable_name | Value | +--------------------------+----------------------------+ | character_set_client | utf8 | | character_set_connection | utf8 | | character_set_database | utf8 | | character_set_filesystem | binary | | character_set_results | utf8 | | character_set_server | utf8 | | character_set_system | utf8 | | character_sets_dir | /usr/share/mysql/charsets/ | +--------------------------+----------------------------+ 8 rows in set (0.00 sec) |