First you need to check the encoding parameter that was specified during export from Excel (in the save dialog → Tools button → Web Options - Encoding tab).
Then try converting the database table to this encoding:
ALTER TABLE <table_name> CONVERT TO CHARACTER SET <character_set> COLLATE <collate_name>
source share