| 記号名 | Circled Digit Two |
| Unicodeバージョン | 1.1 |
| Unicode | U+2461 |
| Unicodeブロック | |
| 一般カテゴリ | Other Number (No) |
| CSSコード | \2461 |
| 16進コード | 0x2461 |
| HTMLコード | ② |
| LaTeX | {②} |
| 記号 | ② |
| URLエンコード(UTF-8パーセント) | %E2%91%A1 |
| 読み上げ名 / スクリーンリーダー | Circled Digit Two |
| UTF-8 | E2 91 A1 |
| UTF-16 | 2461 |
| UTF-32 | 00002461 |
1\documentclass{article}2\usepackage{pifont}3{②}4\end{document}以下の方法でほとんどの最新デバイスでcircled digit two記号を入力できます:
Alt + 9313 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled digit two", or use Unicode Hex Input with 2461.
Ctrl + Shift + U, type 2461, 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.circled-digit-two::before { content: "\2461"; }1<span>②</span>各プログラミング言語におけるCircled Digit Two記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2461' or String.fromCodePoint(0x2461) |
| Python | '\N{CIRCLED DIGIT TWO}' or chr(9313) |
| Rust | '\u{2461}' |
| C / C++ | UTF-8 source or wchar_t with U+2461 |
| Go | string(rune(0x2461)) |
| Ruby | "\u2461" |