I have a i have text which contains emojis. while I load the website website should load emoji similar to facebook emoji. I have successfully implemented for twitter emoji using twemoji, but I'm stuck in case of facebook. below one is the code for twitter emoji
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<div style="padding: 5px 0;">
🎉 Aspect Ratio just landed in Chrome Canary! 🎉
➡️Check it out by enabling the experimental web platform features flag in version 84.0.4145.0 or later
👋🏽 Say your goodbyes and let me know if you find any bugs! 🐞
</div>
<style>
img.emoji {
height: 1em;
width: 1em;
margin: 0 .05em 0 .1em;
vertical-align: -0.1em;
}
</style>
<script src="https://code.jquery.com/jquery-1.12.1.min.jsscript>
<script>window.onload = function () { twemoji.parse(document.body);}</script>
<body>
</html>
Anyone know how can i change this to facebook emoji style? any lib like twemoji for facebook. TIA