Unicode displaying strange in Edge [duplicate]
This question already has an answer here:
 How to prevent emojis rendering in Edge
 
 1 answer
 
 
What I want it to look like:

What it looks like in Edge:

The Unicode character is ▶
I am assuming edge is just trying to be clever and displaying their own image for my unicode character. How do I prevnt this nonesense. I have googled with no avail.
html css unicode microsoft-edge
                    marked as duplicate by Sebastian Brosch, Álvaro González, TylerH
    StackExchange.ready(function() {
        if (StackExchange.options.isMobile) return;
        $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
            var $hover = $(this).addClass('hover-bound'),
                $msg = $hover.siblings('.dupe-hammer-message');
            $hover.hover(
                function() {
                    $hover.showInfoMessage('', {
                        messageElement: $msg.clone().show(),
                        transient: false,
                        position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
                        dismissable: false,
                        relativeToBody: true
                    });
                },
                function() {
                    StackExchange.helpers.removeMessages();
                }
            );
        });
    });
 Jan 26 at 22:02
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
 How to prevent emojis rendering in Edge
 
 1 answer
 
 
What I want it to look like:

What it looks like in Edge:

The Unicode character is ▶
I am assuming edge is just trying to be clever and displaying their own image for my unicode character. How do I prevnt this nonesense. I have googled with no avail.
html css unicode microsoft-edge
                    marked as duplicate by Sebastian Brosch, Álvaro González, TylerH
    StackExchange.ready(function() {
        if (StackExchange.options.isMobile) return;
        $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
            var $hover = $(this).addClass('hover-bound'),
                $msg = $hover.siblings('.dupe-hammer-message');
            $hover.hover(
                function() {
                    $hover.showInfoMessage('', {
                        messageElement: $msg.clone().show(),
                        transient: false,
                        position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
                        dismissable: false,
                        relativeToBody: true
                    });
                },
                function() {
                    StackExchange.helpers.removeMessages();
                }
            );
        });
    });
 Jan 26 at 22:02
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
 
 
 
 
 
 
 
 When you write Unicode characters, please add also the Unicode codepoint number.
 
 – Giacomo Catenazzi
 Jan 21 at 11:26
 
 
 
add a comment |
This question already has an answer here:
 How to prevent emojis rendering in Edge
 
 1 answer
 
 
What I want it to look like:

What it looks like in Edge:

The Unicode character is ▶
I am assuming edge is just trying to be clever and displaying their own image for my unicode character. How do I prevnt this nonesense. I have googled with no avail.
html css unicode microsoft-edge
This question already has an answer here:
 How to prevent emojis rendering in Edge
 
 1 answer
 
 
What I want it to look like:

What it looks like in Edge:

The Unicode character is ▶
I am assuming edge is just trying to be clever and displaying their own image for my unicode character. How do I prevnt this nonesense. I have googled with no avail.
This question already has an answer here:
 How to prevent emojis rendering in Edge
 
 1 answer
 
 
html css unicode microsoft-edge
html css unicode microsoft-edge
edited Jan 26 at 22:02


TylerH
15.8k105368
15.8k105368
asked Jan 20 at 15:13
cryptodescriptorcryptodescriptor
37
37
                    marked as duplicate by Sebastian Brosch, Álvaro González, TylerH
    StackExchange.ready(function() {
        if (StackExchange.options.isMobile) return;
        $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
            var $hover = $(this).addClass('hover-bound'),
                $msg = $hover.siblings('.dupe-hammer-message');
            $hover.hover(
                function() {
                    $hover.showInfoMessage('', {
                        messageElement: $msg.clone().show(),
                        transient: false,
                        position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
                        dismissable: false,
                        relativeToBody: true
                    });
                },
                function() {
                    StackExchange.helpers.removeMessages();
                }
            );
        });
    });
 Jan 26 at 22:02
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
                    marked as duplicate by Sebastian Brosch, Álvaro González, TylerH
    StackExchange.ready(function() {
        if (StackExchange.options.isMobile) return;
        $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
            var $hover = $(this).addClass('hover-bound'),
                $msg = $hover.siblings('.dupe-hammer-message');
            $hover.hover(
                function() {
                    $hover.showInfoMessage('', {
                        messageElement: $msg.clone().show(),
                        transient: false,
                        position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
                        dismissable: false,
                        relativeToBody: true
                    });
                },
                function() {
                    StackExchange.helpers.removeMessages();
                }
            );
        });
    });
 Jan 26 at 22:02
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
 
 
 
 
 
 
 
 When you write Unicode characters, please add also the Unicode codepoint number.
 
 – Giacomo Catenazzi
 Jan 21 at 11:26
 
 
 
add a comment |
 
 
 
 
 
 
 
 When you write Unicode characters, please add also the Unicode codepoint number.
 
 – Giacomo Catenazzi
 Jan 21 at 11:26
 
 
 
When you write Unicode characters, please add also the Unicode codepoint number.
– Giacomo Catenazzi
Jan 21 at 11:26
When you write Unicode characters, please add also the Unicode codepoint number.
– Giacomo Catenazzi
Jan 21 at 11:26
add a comment |
                                1 Answer
                            1
                        
active
oldest
votes
You might find some insight in this thread. As it turns out, there is a workaround, but you would need to change the font-family, at least for your symbol (assuming that you wrap your icon in <span> element with icon class) :
.icon {
  font-family: "Segoe UI Symbol";
}
 
 
 
 
 
 
 
 Thankyou. I read that thread but turns out I missed that comment.
 
 – cryptodescriptor
 Jan 20 at 15:51
 
 
 
add a comment |
                                1 Answer
                            1
                        
active
oldest
votes
                                1 Answer
                            1
                        
active
oldest
votes
active
oldest
votes
active
oldest
votes
You might find some insight in this thread. As it turns out, there is a workaround, but you would need to change the font-family, at least for your symbol (assuming that you wrap your icon in <span> element with icon class) :
.icon {
  font-family: "Segoe UI Symbol";
}
 
 
 
 
 
 
 
 Thankyou. I read that thread but turns out I missed that comment.
 
 – cryptodescriptor
 Jan 20 at 15:51
 
 
 
add a comment |
You might find some insight in this thread. As it turns out, there is a workaround, but you would need to change the font-family, at least for your symbol (assuming that you wrap your icon in <span> element with icon class) :
.icon {
  font-family: "Segoe UI Symbol";
}
 
 
 
 
 
 
 
 Thankyou. I read that thread but turns out I missed that comment.
 
 – cryptodescriptor
 Jan 20 at 15:51
 
 
 
add a comment |
You might find some insight in this thread. As it turns out, there is a workaround, but you would need to change the font-family, at least for your symbol (assuming that you wrap your icon in <span> element with icon class) :
.icon {
  font-family: "Segoe UI Symbol";
}
You might find some insight in this thread. As it turns out, there is a workaround, but you would need to change the font-family, at least for your symbol (assuming that you wrap your icon in <span> element with icon class) :
.icon {
  font-family: "Segoe UI Symbol";
}
answered Jan 20 at 15:34
Piotr WicijowskiPiotr Wicijowski
7366
7366
 
 
 
 
 
 
 
 Thankyou. I read that thread but turns out I missed that comment.
 
 – cryptodescriptor
 Jan 20 at 15:51
 
 
 
add a comment |
 
 
 
 
 
 
 
 Thankyou. I read that thread but turns out I missed that comment.
 
 – cryptodescriptor
 Jan 20 at 15:51
 
 
 
Thankyou. I read that thread but turns out I missed that comment.
– cryptodescriptor
Jan 20 at 15:51
Thankyou. I read that thread but turns out I missed that comment.
– cryptodescriptor
Jan 20 at 15:51
add a comment |
 
When you write Unicode characters, please add also the Unicode codepoint number.
– Giacomo Catenazzi
Jan 21 at 11:26