If look for a mysql entry with the value "BLUE", I can find it with the following entry: SELECT * FROM objects WHERE name LIKE '%blue%'
. That's fine, and what I want.
However: If I'm looking for a mysql entry with the value "BLÅ", SELECT * FROM objects WHERE name LIKE '%blå%'
returns nothing. I want it to return the row.
I'm using the php mysqli object to interact with mysql.
The column character set is utf8. Table collation is utf8_unicode_ci.