[Django3.0]mysqlで日本語入力できない時2

$ sudo vi /etc/mysql/my.cnf

!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mysql.conf.d/

[mysqld]
character-set-server=utf8mb4
skip-character-set-client-handshake
default-storage-engine=INNODB

[client]
# default-character-set=utf8mb4

[mysqldump]
default-character-set=utf8

[mysql]
# default-character-set=utf8

$ sudo /etc/init.d/mysql restart
$ mysql -u root -p
mysql> use hanbai;

mysql> insert into sales_master (name, office, zipcode, prefecture, address, tel, fax, mail, name_top, position_top, created_at, updated_at) values (‘東京テクノロジー株式会社’, ‘本社’, ‘100-6321’, ‘東京都’, ‘千代田区丸の内2-4-1′, ’03-1234-5678′, ’03-1234-5679’, ‘info@tokyotech.com’, ‘山田太郎’, ‘代表取締役’, ‘2020-08-22 15:00:00’, ‘2020-08-22 15:00:00’);
Query OK, 1 row affected (0.01 sec)

mysql> select * from sales_master;
+—-+————————————–+——–+———-+————+—————————-+————–+————–+——————–+————–+—————–+—————————-+—————————-+
| id | name | office | zipcode | prefecture | address | tel | fax | mail | name_top | position_top | created_at | updated_at |
+—-+————————————–+——–+———-+————+—————————-+————–+————–+——————–+————–+—————–+—————————-+—————————-+
| 3 | | | 100-6321 | | 2-4-1 | 03-1234-5678 | 03-1234-5679 | info@tokyotech.com | | | 2020-08-22 15:00:00.000000 | 2020-08-22 15:00:00.000000 |
| 4 | 東京テクノロジー株式会社 | 本社 | 100-6321 | 東京都 | 千代田区丸の内2-4-1 | 03-1234-5678 | 03-1234-5679 | info@tokyotech.com | 山田太郎 | 代表取締役 | 2020-08-22 15:00:00.000000 | 2020-08-22 15:00:00.000000 |
+—-+————————————–+——–+———-+————+—————————-+————–+————–+——————–+————–+—————–+—————————-+—————————-+

あれ? 普通に出来たな。さっきまで出来なかったのに。。

mysql> TRUNCATE table sales_master;
Query OK, 0 rows affected (0.04 sec)

mysql> select * from sales_master;
Empty set (0.00 sec)

mysql> insert into sales_master (name, office, zipcode, prefecture, address, tel, fax, mail, name_top, position_top, created_at, updated_at) values (‘東京テクノロジー株式会社’, ‘本社’, ‘100-6321’, ‘東京都’, ‘千代田区丸の内2-4-1′, ’03-1234-5678′, ’03-1234-5679’, ‘info@tokyotech.com’, ‘山田太郎’, ‘代表取締役’, ‘2020-08-22 15:00:00’, ‘2020-08-22 15:00:00’);
Query OK, 1 row affected (0.00 sec)

mysql> select * from sales_master;
+—-+————————————–+——–+———-+————+—————————-+————–+————–+——————–+————–+—————–+—————————-+—————————-+
| id | name | office | zipcode | prefecture | address | tel | fax | mail | name_top | position_top | created_at | updated_at |
+—-+————————————–+——–+———-+————+—————————-+————–+————–+——————–+————–+—————–+—————————-+—————————-+
| 1 | 東京テクノロジー株式会社 | 本社 | 100-6321 | 東京都 | 千代田区丸の内2-4-1 | 03-1234-5678 | 03-1234-5679 | info@tokyotech.com | 山田太郎 | 代表取締役 | 2020-08-22 15:00:00.000000 | 2020-08-22 15:00:00.000000 |
+—-+————————————–+——–+———-+————+—————————-+————–+————–+——————–+————–+—————–+—————————-+—————————-+
1 row in set (0.00 sec)

OK
次はこの入力された値をDjangoで表示させたい。