shenkwen
shenkwen

Reputation: 3880

Why sometimes   displays as a square?

page in question: http://www.nyaii.com/news/news-id=10.html

I think the square that appears in my computer is some utf-8 characters so it might not be the same on other computers. Here is a screenshot: enter image description here

The HTML code of these squares are just <td>&nbsp;</td>

Upvotes: 2

Views: 1227

Answers (2)

aahhaa
aahhaa

Reputation: 2275

here are couple of thing i would check,

  1. are you using a custom font, do that custom font support   ?
  2. did you declear a charset in your meta?
  3. instead of using &nbsp; why can't you use regular space?
  4. are you using a data base, make sure you set the connection to utf-8 too.

Upvotes: 0

codedude
codedude

Reputation: 6519

I believe typically that means that the character is not recognized by the font.

Upvotes: 1

Related Questions