Simon Ferndriger
Simon Ferndriger

Reputation: 4962

Can I make any unicode symbol (i.e. "🡨") work in IE?

I am considering using this neat text arrow (🡨) in a new website. It works well in Chrome and Firefox as expected. And, of course, not at all in Internet Explorer. Not even in Edge...

Can I make it work in IE as well?



Update

The solution presented in Unicode characters and Internet Explorer does not work for this character, as this demo shows:

<p style="font-family: Arial Unicode MS;">&#9398;</p> <!-- works in IE -->
<p style="font-family: Arial Unicode MS;">&#129128;</p> <!-- does not :( -->

This is how it looks in IE (Edge):

enter image description here

Upvotes: 0

Views: 821

Answers (1)

Simon Ferndriger
Simon Ferndriger

Reputation: 4962

Not the very same character, but the best alternative (using an arrow to the right, and rotating it 180°).

<span style="display:inline-block; transform: rotate(180deg);">âž”</span>

Upvotes: 1

Related Questions