What is a character that looks like space but no space? (not a & nbsp;)

I’m not talking about  , but about another character "that looks like" "even in the text area, but this other character (separating a line with a space character does NOT divide hello world into two words).

+3
source share
4 answers

  or one of them below, perhaps?

http://www.w3.org/TR/html4/sgml/entities.html

<!-- General Punctuation -->
<!ENTITY ensp    CDATA "&#8194;" -- en space, U+2002 ISOpub -->
<!ENTITY emsp    CDATA "&#8195;" -- em space, U+2003 ISOpub -->
<!ENTITY thinsp  CDATA "&#8201;" -- thin space, U+2009 ISOpub -->
+5
source

in previous DOS times, char 255 was an empty character

+1
source
+1

rawurlencode():

echo rawurlencode("whatever string with any \05 \02 weird symbols");

, %

+1

All Articles