Could not read at phmyadmin after restoring.
I did backup and restore with these commands:
mysqldum -u -p --default-character-set=latin1 dmdb > mydb-back.sql
converting mydb-back.sql's character latin1 to utf8 with notepad++
reaplced "latin1" with "utf8".
mysql> CREATE DATABASE "mydb_utf8" DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
mysql -p --default-character-set=lutf8 mydb_utf8 < mydb-back.sql
After restoring sql, I opened phmyadmin, but I coul not read letters of database.
But the sql file can be read at notepad++ with utf8.
Any comment would be appreciated.