| Nom du symbole | Postal Mark |
| Version Unicode | 1.1 |
| Unicode | U+3012 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \3012 |
| Code hexadécimal | 0x3012 |
| Code HTML | 〒 |
| LaTeX | \text{POSTALMARK} |
| Symbole | 〒 |
| Encodage URL (pourcent UTF-8) | %E3%80%92 |
| Nom oral / lecteur d’écran | Postal Mark |
| UTF-8 | E3 80 92 |
| UTF-16 | 3012 |
| UTF-32 | 00003012 |
1\documentclass{article}2\usepackage{pifont}3\text{POSTALMARK}4\end{document}Vous pouvez saisir le symbole postal mark sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 12306 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "postal mark", or use Unicode Hex Input with 3012.
Ctrl + Shift + U, type 3012, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with punctuation support.
1span.postal-mark::before { content: "\3012"; }1<span>〒</span>La représentation du symbole Postal Mark dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u3012' or String.fromCodePoint(12306) |
| Python | '\N{POSTAL MARK}' or chr(12306) |
| Rust | '\u{3012}' |
| C / C++ | UTF-8 source or wchar_t with U+3012 |
| Go | string(rune(0x3012)) |
| Ruby | "\u{3012}" |