tags:

views:

113

answers:

2
+1  Q: 

What is 
 ?

In html made by fckeditor i find the following character:



What is this character?

+8  A: 

Looks like the ASCII code for Carriage Return, encoded as an XML character reference.

Eric Minkes
Numerical character references refer to character of Unicode’s character set and not ASCII’s. (Although the first 128 character of Unicode’s and ASCII’s character set is identical.)
Gumbo
All right. strange that is suddely appears...
blub
I've filtered it out...But the thing is that i forgot if i pass it through to PHP it was rendered as a carriage return. So to make a good if statement i had to use htmlentities(trim('')) to campare it.
blub
+1  A: 

AsciiTable is a good place to look up decimal, hex and octal values for each ASCII character.

Character entity references in HTML 4 is also a good resource for determining what various character entities are.

Grant Wagner