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