Dear friends, they passed me a site where I have to repair the search function and I run into the following problem:
There is a column in the bd, for this example 'name', which stores the data in the following way: {"is": "Balloon Puc \ u00f3n and Curarrehue 2014"}
As you can see the word "Pucón" is stored with the accent in the unicode format (\ u00f3) if I'm not mistaken. Because of this the query that I put below does not return anything to me
SELECT * FROM projects WHERE name LIKE '%pucon%';
The site uses mysql, the field is of type LONGTEXT, the charset is utf8 with Collation utf8_unicode_ci
How would you retrieve the data that contains characters in unicode?
Thank you in advance!