i have a table in my database similar to this one
id | name | email
-----------------------------------------
1 | elie | elie@company.com
2 | jénifer | jenifer@company.com
3 | jenny | jenny@company.com
as you can see the record with ID=2 has in the name a french character. when running this SQL
SELECT * FROM `TABLENAME` WHERE `name` LIKE '%jé%'
I'm expecting to see only the record with ID=2. Instead I'm getting ID=2 & ID=3. the SQL is replacing the french character "é" with "e".
My Database, table and fields have Collation=utf8_general_ci
what should i do in this case to get the correct result if i need to keep the french characters saved in my database as well?