| Nombre del símbolo | Trade Mark Sign |
| Versión Unicode | 1.1 |
| Unicode | U+2122 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2122 |
| Código hexadecimal | 0x2122 |
| Código HTML | ™ |
| LaTeX | \texttrademark |
| Símbolo | ™ |
| Codificación URL (porcentaje UTF-8) | %E2%84%A2 |
| Nombre oral / lector de pantalla | Trade Mark Sign |
| UTF-8 | E2 84 A2 |
| UTF-16 | 2122 |
| UTF-32 | 00002122 |
1\documentclass{article}2\usepackage{pifont}3\texttrademark4\end{document}Puedes escribir el símbolo trade mark sign en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Trade Mark Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |