Symbols & Shapes

Trademark Symbol ()

The trademark symbol (superscript TM) denotes an unregistered trademark or common law trademark claim.

One-Click Copyable Code Formats

HTML Named Entity
™
HTML Decimal Code
™
HTML Hex Code
™
CSS content (\XXXX)
\2122
JavaScript Unicode (\uXXXX)
\u2122
URL Percent Encoded
%E2%84%A2

Real-World Implementation Snippets

HTML5 Document
<p>Example: &trade;</p>
CSS ::before / ::after
.badge::before { content: '\2122 '; }
React JSX / TypeScript
<span>{"\u2122"}</span>
Frequently Asked Questions

Trademark Symbol (™) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&trade;". If using numeric codes, you can use the decimal code "&#8482;" or hex code "&#x2122;".