| Nom du symbole | Service Mark |
| Version Unicode | 1.1 |
| Unicode | U+2120 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2120 |
| Code hexadécimal | 0x2120 |
| Code HTML | ℠ |
| LaTeX | \textservicemark |
| Symbole | ℠ |
| Encodage URL (pourcent UTF-8) | %E2%84%A0 |
| Nom oral / lecteur d’écran | Service Mark |
| UTF-8 | E2 84 A0 |
| UTF-16 | 2120 |
| UTF-32 | 00002120 |
1\documentclass{article}2\usepackage{pifont}3\textservicemark4\end{document}Vous pouvez saisir le symbole service mark sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Service Mark dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |