I've read this answer to related question about a way to turn graphic emoji into text representation. I've tested that and it worked.
I wanted some magic related character that I'd be able to stylize with css the way I need. Preferably magic wand, but that emoji is not available yet, so I've decided to go with Mage.
That's where my problems started. I've had a mechanism to turn emoji to text and I've had an emoji I want but this pair does not seem to work together. I've tested it in Firefox and Chrome. Both always show graphic representation. Mage emoji shows as text in Notepad++, so it's not that such representation does not exist (well I think it always should be available, while support for graphic version might not). What might be the reason that it is not working? Is there any other way to force text version?
Here's example of what I've tried ( with this result: ︎ ︎ ✨︎ ︎ ⌛︎ ):
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {
font-size: 5em;
}
</style>
</head>
<body>
🧙︎ 🎩︎ ✨︎ 🍔︎ ⌛︎
</body>
</html>