-
@mcclure111 If they're using MySQL as their database and set the charset to just
utf8
and notutf8mb4
, then that would explain it. Unicode emojis require 4 bytes andutf8
in MySQL speak has historically meantutf8mb3
, or 3-bytes per character. 3 < 4, thus no Unicode emoji chars. -
@mcclure111 More recent versions of WordPress define their MySQL databases as
utf8mb4
; but, there are a lot of people who get hung up onutf8
being an alias forutf8mb3
. I had to convert one of my app's databases to useutf8mb4
because it couldn't handle Unicode emojis 🤦🏻♂️