You'll simply need to run an ALTER on each of the tables as follows:
If you also need to update the existing character encoding (unlikely by the sounds of things), you can use:Mã:ALTER TABLE <table name> COLLATE utf8_general_ci;
Mã:ALTER TABLE <table name> CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;