Make WordPress Core


Ignore:
Timestamp:
11/04/2025 06:16:14 PM (3 months ago)
Author:
desrosj
Message:

Emoji: Update Twemoji to version 17.0.1.

Unicode 17 includes 7 new Emoji code points. All 7 were included in Emoji 17, which was officially released in early September 2025.

In addition to these 7 new single code point Emoji, Emoji 17 also includes 156 additional Emoji possibilities using modifiers or ZWJ sequences to create various gender and skin tone combinations.

“This Emoji update is the best to date by a landslide 🛘“ may not be an opinion you hold. Perhaps you’re disappointed, hearing sad trombones in your head 🪊🪊. Thankfully, there’s a whole treasure chest 🪎 of Emoji to choose from (3,953 and counting).

🫈 But why do I always feel like I'm in The Twilight Zone? And I always feel like somebody's watchin' me? 🫈

Props westonruter, dd32.
Fixes #64184.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/formatting/emoji.php

    r60899 r61134  
    77class Tests_Formatting_Emoji extends WP_UnitTestCase {
    88
    9     private $png_cdn = 'https://s.w.org/images/core/emoji/16.0.1/72x72/';
    10     private $svg_cdn = 'https://s.w.org/images/core/emoji/16.0.1/svg/';
     9    private $png_cdn = 'https://s.w.org/images/core/emoji/17.0.1-1/72x72/';
     10    private $svg_cdn = 'https://s.w.org/images/core/emoji/17.0.1-1/svg/';
    1111
    1212    /**
     
    158158                '🧚',
    159159            ),
     160            array(
     161                // Hairy creature (Unicode 17).
     162                '🫈',
     163                '🫈',
     164            ),
    160165        );
    161166    }
     
    193198                '<img src="' . $this->png_cdn . '1f9da.png" alt="🧚" class="wp-smiley" style="height: 1em; max-height: 1em;" />',
    194199            ),
     200            array(
     201                // Hairy creature (Unicode 17).
     202                '🫈',
     203                '<img src="' . $this->png_cdn . '1fac8.png" alt="🫈" class="wp-smiley" style="height: 1em; max-height: 1em;" />',
     204            ),
    195205        );
    196206
Note: See TracChangeset for help on using the changeset viewer.