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