Quote Originally Posted by barco57 View Post
Found this information

What is the meaning of the MySQL collation utf8mb4_0900_ai_ci?

uft8mb4 means that each character is stored as a maximum of 4 bytes in the UTF-8 encoding scheme.
0900 refers to the Unicode Collation Algorithm version. (The Unicode Collation Algorithm is the method used to compare two Unicode strings that conforms to the requirements of the Unicode Standard).
ai refers accent insensitivity. That is, there is no difference between e, è, é, ê and ë when sorting.
ci refers to case insensitivity. This is, there is no difference between p and P when sorting.

utf8mb4 has become the default character set, with utf8mb4_0900_ai_ci as the default collation in MySQL 8.0.1 and later. Previously, utf8mb4_general_ci was the default collation. Because the utf8mb4_0900_ai_ci collation is now the default, new tables have the ability to store characters outside the Basic Multilingual Plane by default. Emojis can now be stored by default. If accent sensitivity and case sensitivity are required, you may use utf8mb4_0900_as_cs instead.
Perfect! And my new database is MySQL 8 so this makes total sense. I just did a search and replace to replace utf8mb4_0900_ai_ci with utfmb4_0900_general_ci based on the recommendation in the article above. While it seems to have "worked" I was worried that it would cause an issue somewhere down the line. I do not have any accented characters anyway.

My mind is much more at ease now. Great Explanation! Thanks!