Som et eksempel på at oprette en ny tabel med utf-8 ecoding, burde dette fungere for dig;
CREATE TABLE IF NOT EXISTS `test` (
`id` int(10) NOT NULL,
`name` varchar(10)
collate utf8_unicode_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;