| 記号名 | Double Circled Digit Six |
| Unicodeバージョン | 3.2 |
| Unicode | U+24FA |
| Unicodeブロック | |
| 一般カテゴリ | Number (No) |
| CSSコード | \24FA |
| 16進コード | 0x24FA |
| HTMLコード | ⓺ |
| LaTeX | \text{DOUBLECIRCLEDDIGITSIX} |
| 記号 | ⓺ |
| URLエンコード(UTF-8パーセント) | %E2%93%BA |
| 読み上げ名 / スクリーンリーダー | Double Circled Digit Six |
| UTF-8 | E2 93 BA |
| UTF-16 | 24FA |
| UTF-32 | 000024FA |
1\documentclass{article}2\usepackage{pifont}3\text{DOUBLECIRCLEDDIGITSIX}4\end{document}以下の方法でほとんどの最新デバイスでdouble circled digit six記号を入力できます:
Alt + 9466 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "double circled digit six", or use Unicode Hex Input with 24FA.
Ctrl + Shift + U, type 24fa, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with list marker support.
1span.double-circled-digit-six::before { content: "\24FA"; }1<span>⓺</span>各プログラミング言語におけるDouble Circled Digit Six記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u24FA' or String.fromCodePoint(9466) |
| Python | '\N{DOUBLE CIRCLED DIGIT SIX}' or chr(9466) |
| Rust | '\u{24FA}' |
| C / C++ | UTF-8 source or wchar_t with U+24FA |
| Go | string(rune(0x24FA)) |
| Ruby | "\u{24FA}" |