On 29 Jun 2001 15:21:46 +0200, Stéphane JEAN BAPTISTE wrote:
> 
> 
> Hi
> 
> I need the (hexa?) code for trailing newline, but not "\n". I need a
> code like (&#233 or &eacute for é)
> 
> 
> tks
> 

For HTML a newline is generated by the <br> tag.  I am not certain what
would happen if you put &#10; (the LF character) or &#13;&#10; (the CRLF
pair) in an HTML doc, but I would assume it would treat them like it
does the characters themselves.  

NOTE: the values of LF and CR above are in decimal the hex values are
0x0A and 0x0D respectivly.  In octal they are 012 (LF) and 015 (CR).

--
Today is Setting Orange, the 34th day of Confusion in the YOLD 3167
Frink!


Reply via email to