I'm having trouble with some character encoding/charset
I retrieve some rows from a table, 1 of which is varchar. Whenever there's æ, ø or å in the varchar column they get translated to a seemingly bogus character. Same bogus char for each of the 3.
I created the table like this
CREATE TABLE `mytable` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`account_id` int(11) DEFAULT NULL,
`name` varchar(100) DEFAULT NULL,
`mytext` int(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1402 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
I'm guessing it has something to do with the collate or charset, but haven't been able to find anything that solved this.