Trademark Symbol

Shortcodes

Copy and paste codes for Trademark Symbol ™ to use in your websites, apps, blogs, and more.

Unicode
U+2122
Alt Code
0153
HTML Code
™
HTML Entity
™
HEX Code
™
CSS Code
\2122
JS/JSON
\u2122
Unix/C/PHP/JAVA
0x2122
URL-encode
%E2%84%A2
copied

Customize Trademark Symbol Symbol

Customize ™ symbol as you like and download Trademark Symbol as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to type Trademark Symbol ™ ?

Using Trademark Symbol Alt Code:

You can type the Trademark Symbol ™ using your keyboard by using the Alt Code for Trademark Symbol. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 0153 using the Numpad.
  3. Release the Alt key.

This will make the ™ appear on your screen.

How to add Trademark Symbol in HTML, CSS, and JS?

Insert ™ Trademark Symbol using HTML

1. Copy-paste Trademark Symbol directly:
<span>™</span>
2. HTML Decimal Code:
<span>&#8482;</span>
3. HTML Entity:
<span>&trade;</span>
4. Hexadecimal Code:
<span>&#x2122;</span>
Preview:

Add Trademark Symbol with CSS

.trademark-symbol::before {
    content: '\\2122';
}
Preview: Trademark Symbol

Trademark Symbol JavaScript Code

1. Direct Symbol:
document.querySelector('.trademark-symbol').textContent = '™';
2. Unicode Escape for ™:
document.querySelector('.trademark-symbol').textContent = '\u2122';
Preview: