Trademark Symbol ()

HTML entity for the trademark symbol (™). Learn how to use ™ or ™ in HTML, with code examples, Unicode value, and browser support.

Symbol

Trademark Symbol

All Formats

FormatValue
Character
HTML Entity™
HTML Code (Decimal)™
UnicodeU+2122
CSS Content\2122
CategorySymbol

About Trademark Symbol

The trademark symbol (™) indicates that a word, phrase, symbol, or design is being used as a trademark but has not necessarily been registered with a government trademark office. It serves as a public claim of trademark rights.

In HTML, insert this symbol using ™, ™, or ™. The named entity ™ was introduced in HTML 4.0 and is supported by all modern browsers. Unlike the registered trademark symbol (®), the trademark symbol does not require formal registration and can be used by anyone claiming trademark rights.

The trademark symbol is part of the Letterlike Symbols Unicode block. It renders as a superscript "TM" in most fonts and is commonly placed immediately after the trademarked term without a space. Some style guides recommend using it only on the first mention of a trademark within a document.

In CSS, you can insert the trademark symbol using "\2122" with the content property. This is particularly useful when implementing brand guidelines that require trademark symbols to appear consistently across a website without modifying the underlying HTML content.

Usage Examples

<!-- Using named entity -->
<p>This is the Trademark Symbol: &trade;</p>

<!-- Using numeric code -->
<p>This is the Trademark Symbol: &#8482;</p>

<!-- Using the character directly (UTF-8) -->
<p>This is the Trademark Symbol: ™</p>

<!-- In CSS -->
.icon::before {
  content: "\2122";
}

FAQ

What is the HTML entity for Trademark Symbol?

The Trademark Symbol () can be inserted using the named entity &trade;, the numeric code &#8482;, or by pasting the character directly in a UTF-8 document.

How do I use in CSS?

In CSS, use the content property with the value "\2122". For example: content: "\2122";

What is the Unicode code point for Trademark Symbol?

The Unicode code point for Trademark Symbol is U+2122. This is the universal identifier for this character across all platforms and programming languages.

Try It in the HTML Entity Tool

Use our HTML Entity Encoder & Decoder to encode and decode HTML entities, convert between named, numeric, and hex formats, and explore the full entity reference table.

Open HTML Entity Tool →