| Nome del simbolo | Ocr Hook |
| Versione Unicode | 1.1 |
| Unicode | U+2440 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \2440 |
| Codice esadecimale | 0x2440 |
| Codice HTML | ⑀ |
| LaTeX | \text{OCRHOOK} |
| Simbolo | ⑀ |
| Codifica URL (percentuale UTF-8) | %E2%91%80 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo ocr hook sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Ocr Hook nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |