In wordpress when I use a unicode emoji like "😑" or others,
wordpress convert emoji character to <img>
tag with src="emoji.svg"
and alt="😑"
like this:
<img draggable="false" class="emoji" alt="😑" src="https://s.w.org/images/core/emoji/11/svg/1f611.svg">
Imagine I want to use 50 emoji in a text, this is very bad in SEO and for site performance. Is there a way to keep the emoji as unicode? Like here on Stack Overflow and other websites?
Thanks a lot!