| Nome del simbolo | Roman Numeral One |
| Versione Unicode | 1.1 |
| Unicode | U+2160 |
| Blocco Unicode | |
| Categoria generale | Letter Number (Nl) |
| Codice CSS | \2160 |
| Codice esadecimale | 0x2160 |
| Codice HTML | Ⅰ |
| LaTeX | \mathrm{I} |
| Simbolo | I |
| Codifica URL (percentuale UTF-8) | %49 |
| Nome parlato / screen reader | Roman Numeral One |
| UTF-8 | E2 85 A0 |
| UTF-16 | 2160 |
| UTF-32 | 00002160 |
1\documentclass{article}2\usepackage{pifont}3\mathrm{I}4\end{document}Puoi digitare il simbolo roman numeral one sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8544 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "roman numeral one", or use Unicode Hex Input with 2160.
Ctrl + Shift + U, type 2160, 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-one::before { content: "\2160"; }1<span>Ⅰ</span>La rappresentazione del simbolo Roman Numeral One nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2160' or String.fromCodePoint(0x2160) |
| Python | '\N{ROMAN NUMERAL ONE}' or chr(8544) |
| Rust | '\u{2160}' |
| C / C++ | UTF-8 source or wchar_t with U+2160 |
| Go | string(rune(0x2160)) |
| Ruby | "\u2160" |