Home > Back-end >  Unicode playing card symbols not displayed in mobile browsers
Unicode playing card symbols not displayed in mobile browsers

Time:09-23

I have a html page where I want to use playing card symbols. My minimal example

<html>
<head>
  <meta charset="utf-8" />
</head>

<body>
  &#127137;
</body>
</html>

displays the Ace of Space in Firefox on my desktop PC but an empty black box in Firefox and Brave on my mobile device. What's the problem here?

CodePudding user response:

The problem is that the Unicode character for Ace of Spades

  • Related