| Symboolnaam | Roman Numeral Two |
| Unicode-versie | 1.1 |
| Unicode | U+2161 |
| Unicode-blok | |
| Algemene categorie | Letter Number (Nl) |
| CSS-code | \2161 |
| Hexadecimale code | 0x2161 |
| HTML-code | Ⅱ |
| LaTeX | \mathrm{II} |
| Symbool | II |
| URL-codering (UTF-8 procent) | %49%49 |
| Uitgesproken naam / schermlezer | Roman Numeral Two |
| UTF-8 | E2 85 A1 |
| UTF-16 | 2161 |
| UTF-32 | 00002161 |
1\documentclass{article}2\usepackage{pifont}3\mathrm{II}4\end{document}Je kunt het roman numeral two-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 8545 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "roman numeral two", or use Unicode Hex Input with 2161.
Ctrl + Shift + U, type 2161, 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-two::before { content: "\2161"; }1<span>Ⅱ</span>De weergave van het Roman Numeral Two-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u2161' or String.fromCodePoint(0x2161) |
| Python | '\N{ROMAN NUMERAL TWO}' or chr(8545) |
| Rust | '\u{2161}' |
| C / C++ | UTF-8 source or wchar_t with U+2161 |
| Go | string(rune(0x2161)) |
| Ruby | "\u2161" |