| Nom du symbole | Ocr Hook |
| Version Unicode | 1.1 |
| Unicode | U+2440 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2440 |
| Code hexadécimal | 0x2440 |
| Code HTML | ⑀ |
| LaTeX | \text{OCRHOOK} |
| Symbole | ⑀ |
| Encodage URL (pourcent UTF-8) | %E2%91%80 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole ocr hook sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Ocr Hook dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |