| Symbol Name | Service Mark |
| Unicode Version | 1.1 |
| Unicode | U+2120 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2120 |
| Hex Code | 0x2120 |
| HTML Code | ℠ |
| LaTeX | \textservicemark |
| Symbol | ℠ |
| URL encode (UTF-8 percent) | %E2%84%A0 |
| Spoken / screen reader name | Service Mark |
| UTF-8 | E2 84 A0 |
| UTF-16 | 2120 |
| UTF-32 | 00002120 |
1\documentclass{article}2\usepackage{pifont}3\textservicemark4\end{document}You can type the service mark symbol on most modern devices with the help of following methods:
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>Service Mark symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |