| Nom du symbole | Four Dot Mark |
| Version Unicode | 4.1 |
| Unicode | U+205B |
| Bloc Unicode | |
| Catégorie générale | Other Punctuation (Po) |
| Code CSS | \205B |
| Code hexadécimal | 0x205B |
| Code HTML | ⁛ |
| LaTeX | \text{FOURDOTMARK} |
| Symbole | ⁛ |
| Encodage URL (pourcent UTF-8) | %E2%81%9B |
| Nom oral / lecteur d’écran | Four Dot Mark |
| UTF-8 | E2 81 9B |
| UTF-16 | 205B |
| UTF-32 | 0000205B |
1\documentclass{article}2\usepackage{pifont}3\text{FOURDOTMARK}4\end{document}Vous pouvez saisir le symbole four dot mark sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8283 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "four dot mark", or use Unicode Hex Input with 205B.
Ctrl + Shift + U, type 205b, 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.four-dot-mark::before { content: "\205B"; }1<span>⁛</span>La représentation du symbole Four Dot Mark dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u205B' or String.fromCodePoint(8283) |
| Python | '\N{FOUR DOT MARK}' or chr(8283) |
| Rust | '\u{205B}' |
| C / C++ | UTF-8 source or wchar_t with U+205B |
| Go | string(rune(0x205B)) |
| Ruby | "\u{205B}" |