| Symbol Name | Trade Mark Sign |
| Unicode Version | 1.1 |
| Unicode | U+2122 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2122 |
| Hex Code | 0x2122 |
| HTML Code | ™ |
| LaTeX | \texttrademark |
| Symbol | ™ |
| URL encode (UTF-8 percent) | %E2%84%A2 |
| Spoken / screen reader name | Trade Mark Sign |
| UTF-8 | E2 84 A2 |
| UTF-16 | 2122 |
| UTF-32 | 00002122 |
1\documentclass{article}2\usepackage{pifont}3\texttrademark4\end{document}You can type the trade mark sign symbol on most modern devices with the help of following methods:
Alt + 0153 on the numeric keypad, or insert via Character Map.
Option + 2 on many keyboard layouts, or Edit → Emoji & Symbols.
Ctrl + Shift + U, type 2122, then Enter (layout-dependent).
Use the symbols keyboard or text replacement, depending on keyboard layout.
Paste from this page or use extended symbols panels on supported keyboards.
1span.tm::before { content: "\2122"; }1<span>™</span>Trade Mark Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2122' or String.fromCodePoint(0x2122) |
| Python | '\N{TRADE MARK SIGN}' or chr(8482) |
| Rust | '\u{2122}' |
| C / C++ | UTF-8 source or wchar_t with U+2122 |
| Go | string(rune(0x2122)) |
| Ruby | "\u2122" |