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