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