skip to Main Content

Normalize a unicode string in PHP

In PHP, mb_strtolower('İspanyolca'); returns U+0069 i LATIN SMALL LETTER I U+0307 ̇ COMBINING DOT ABOVE U+0073 s LATIN SMALL LETTER S U+0070 p LATIN SMALL LETTER P etc. I need to get rid of the "U+0307 ̇ COMBINING DOT ABOVE";…

VIEW QUESTION

Get primary keys with unicode characters in mysql

I'm trying to write an query that will analyze the data stored in Primary Keys across multiple tables to find if they contain unicode characters in them. Below are the schema of my tables: mysql> SHOW CREATE TABLE employee_plain; +----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+…

VIEW QUESTION
Back To Top
Search