Forum Moderators: open
You can replace the
< and > with < and > respectively: <b>1234</b> In HTML 3.2 there was the
<xmp> tag which most browsers took to meaning that the contents should be unparsed, but the tag was deprecated and it probably isn't a good idea to depend on this behavior (which was not explicitly defined as such in the HTML 3.2 specification anyway). <xmp><b>1234</b></xmp>
Hoping be useful,
Herenvardö
PS: Everything about entities is published at [w3.org...] You may also seek the W3 Consortium specs to check entitites in the diferent versions of HTML. Even so, the ones you may need are also the ones most used and widely available: < for <, > for >, and don't forget to use & for &, or the system might try to parse following text as an entity. Also care that these entities should be used even in tag's parameters, for example encoding the & in URI's.
Edited by Herenvardo. Edit reason: 'PS' added.