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