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