My database, tables, fields all are using utf8mb4. I can store well emoji symbols into some fields. Now I try to query such as:
SELECT * FROM user WHERE name='😀😇😈😉'
Amazing, the result are records with field names different such as '😀😃😇😉'
Looks like mysql matches emoji strings by their lengths but not contents.
Any idea to fix that problem? Many thanks.