119

In my ASP.NET application, I was trying to add few white spaces between two text boxes by typing space bar. The equivalent HTML source was   instead of  . So I just wanted to check: is this the new replacement for white space? If yes, any idea why they changed?

Ricardo
  • 3,696
  • 5
  • 36
  • 50
Anto Varghese
  • 3,131
  • 6
  • 31
  • 38

3 Answers3

161
  •   is the character entity reference (meant to be easily parseable by humans).
  •   is the numeric entity reference (meant to be easily parseable by machines).

They are the same except for the fact that the latter does not need another lookup table to find its actual value. The lookup table is called a DTD, by the way.

You can read more about character entity references in the offical W3C documents.

zb226
  • 9,586
  • 6
  • 49
  • 79
Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358
22

Those do both mean non-breaking space, yes.   is another synonym, in hex.

JAL
  • 21,295
  • 1
  • 48
  • 66
16

  is the numeric reference for the entity reference   — they are the exact same thing. It's likely your editor is simply inserting the numberic reference instead of the named one.

See the Wikipedia page for the non-breaking space.

josh3736
  • 139,160
  • 33
  • 216
  • 263