Problem is related to character sets & collation type of table so
simply change the table charater set & collation type
Use the following command :
alter table <table_name> convert to character set utf8 collate utf8_unicode_ci;
or you can chage it manually :
Go to option> and then go to option > Table Options > Collation
Change it to ” utf8_unicode_ci ”
your problem is solved
.