| Nom du symbole | Roman Numeral Three |
| Version Unicode | 1.1 |
| Unicode | U+2162 |
| Bloc Unicode | |
| Catégorie générale | Letter Number (Nl) |
| Code CSS | \2162 |
| Code hexadécimal | 0x2162 |
| Code HTML | Ⅲ |
| LaTeX | \mathrm{III} |
| Symbole | III |
| Encodage URL (pourcent UTF-8) | %49%49%49 |
| Nom oral / lecteur d’écran | Roman Numeral Three |
| UTF-8 | E2 85 A2 |
| UTF-16 | 2162 |
| UTF-32 | 00002162 |
1\documentclass{article}2\usepackage{pifont}3\mathrm{III}4\end{document}Vous pouvez saisir le symbole roman numeral three sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8546 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "roman numeral three", or use Unicode Hex Input with 2162.
Ctrl + Shift + U, type 2162, 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 enclosed numeral support.
1span.roman-numeral-three::before { content: "\2162"; }1<span>Ⅲ</span>La représentation du symbole Roman Numeral Three dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2162' or String.fromCodePoint(0x2162) |
| Python | '\N{ROMAN NUMERAL THREE}' or chr(8546) |
| Rust | '\u{2162}' |
| C / C++ | UTF-8 source or wchar_t with U+2162 |
| Go | string(rune(0x2162)) |
| Ruby | "\u2162" |