Variable Visions

HTML Character Entities

Published Tue. Nov. 15, 2011

Reserved characters like greater/less than and special characters like trade marks require the use of HMT Character Entities

While working on an email blast, I noticed that by copy/pasting a TM will not always convert to the html character entity. I simple find/replace converted the TM to its html character entity. (can't code it out here because it will show as a TM...™

Some other usefull character entities:

 

non-breaking space

 

 

< 

less than

&lt;

&#60;

> 

greater than

&gt;

&#62;

&

ampersand

&amp;

&#38;

¢

cent

&cent;

&#162;

£

pound

&pound;

&#163;

¥

yen

&yen;

&#165;

€

euro

&euro;

&#8364;

§

section

&sect;

&#167;

©

copyright

&copy;

&#169;

®

registered trademark

&reg;

&#174;

™

trademark

&trade;

&#8482;

Keywords:HTML Character Entities