• I accidentally made my wordpress database utf8mb3. Really it should be utf8mb4 as apparently this supports more characters.

    Check database collation:
    SELECT default_character_set_name, default_collation_name FROM information_schema.SCHEMATA?WHERE schema_name = “mydatabse_name“;

    before – utf8mb3_unicode_ci
    after – utf8mb4_unicode_ci

    Thanks for the plugin

  • You must be logged in to reply to this review.