DEV Community

Discussion on: Learn TailwindCSS: Make A Profile Card

Collapse
 
shreya profile image
Shreya Purohit • Edited

Hm In this case you can make use of unicode character encoding. Like for the emoji 🧑‍💻, it is a combined emoji set for the other two emojis (👨,💻) so we've to use them combined like: &#x1F468‍&#x1F4BB

👨 - &#x1F46
💻 - &#x1F4BB
Enter fullscreen mode Exit fullscreen mode

References: W3Schools Emoji Reference

Emojipedia Reference


Solution: Use &#x1F468‍&#x1F4BB to get 🧑‍💻