79073661

Date: 2024-10-10 09:28:44
Score: 1.5
Natty:
Report link

As mentioned by @Huang and linked by @DBS here: https://stackoverflow.com/a/38452396/10594231

This could be fixed by appending the unicode variation selector VS15 to the character which forces it to be rendered as text rather than emoji.

div.entry-content p a::before {
    content: "\2197";
    padding-right: 2px
}

would become

div.entry-content p a::before {
    content: "\2197\FE0E";
    padding-right: 2px
}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: CanadianBacon