How to do the TM symbol in HTML
Posted November 8th, 2008 in HTML and CSS
The character symbols for copyright and registered trademark are part of the HTML specification (those are the C and R in the circle symbols) but the superscript TM symbol to denote trademark is not. This short post looks at how you can insert the TM symbol into your HTML but be aware that because it is not supported by the HTML spec it may not render across all browsers and all operating systems correctly.
The following is an image depicting the TM symbol as it is normally used, subscripted at the end of the trademark word:
You can render the TM symbol in HTML with the following entities:
™ ™
Please note as mentioned in the first paragaph that these are not supported by the HTML specification. They should render correctly across browsers and operating systems but there is no guarantee.
And just for the sake of reference, these are the entities for the copyright © symbol:
© ©
and for the registered trademark ® symbol:
® ®
Related posts:
- Using the <label> tag for HTML forms (Saturday, April 25th 2009)
- Valid characters for the HTML ID attribute (Saturday, April 4th 2009)
- How to make a font italic with CSS (Saturday, February 21st 2009)
- Favicon tag (Saturday, February 7th 2009)
- Using !important with CSS (Saturday, January 31st 2009)

Comments
blog comments powered by Disqus