Luiso Vázquez
Luiso Vázquez

Reputation: 37

Unicode character does not appear on iOS

I'm having problems with some Unicode character (🞻) not showing on iOS.

I have this line of code <p><a class="title" href="index.html">&#128955; Luiso Vázquez</a></p> using the HTML entity of the character.

It looks good in desktop, but when it comes to Chrome on my iOS device it appears as an outlined square.

Is there anything I can do to solve this?

Thank you in advance

Upvotes: 1

Views: 1278

Answers (1)

jluims
jluims

Reputation: 402

iOS's font doesn't cover the character you're trying to use. To fix this, you can either

  1. Use a web font
  2. Use an image of the character
  3. Use a different character

Upvotes: 3

Related Questions