| Nombre del símbolo | Service Mark |
| Versión Unicode | 1.1 |
| Unicode | U+2120 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2120 |
| Código hexadecimal | 0x2120 |
| Código HTML | ℠ |
| LaTeX | \textservicemark |
| Símbolo | ℠ |
| Codificación URL (porcentaje UTF-8) | %E2%84%A0 |
| Nombre oral / lector de pantalla | Service Mark |
| UTF-8 | E2 84 A0 |
| UTF-16 | 2120 |
| UTF-32 | 00002120 |
1\documentclass{article}2\usepackage{pifont}3\textservicemark4\end{document}Puedes escribir el símbolo service mark en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8480 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "service mark", or use Unicode Hex Input.
Ctrl + Shift + U, type 2120, then Enter (layout-dependent).
Paste from this page or use a text replacement shortcut.
Paste from this page or use extended symbol panels where available.
1span.sm::before { content: "\2120"; }1<span>℠</span>La representación del símbolo Service Mark en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2120' or String.fromCodePoint(0x2120) |
| Python | '\N{SERVICE MARK}' or chr(8480) |
| Rust | '\u{2120}' |
| C / C++ | UTF-8 source or wchar_t with U+2120 |
| Go | string(rune(0x2120)) |
| Ruby | "\u2120" |