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