I have a table containing some regexes. By default the table was created using utf8mb4_general_ci collation. Everything is fine until i try to add a regex containing homoglyphes like this one. The regex // once stored in my database will simply never match.
What is causing this behavior ? I suspect the mysql table row collation to be in fault. If so, what collation should be used to fix this ?
Does changing the collation will affect my other regex already stored in that table (more than 3k, but plain text, no homoglyphes) ?