| Nombre del símbolo | Ocr Dash |
| Versión Unicode | 1.1 |
| Unicode | U+2448 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2448 |
| Código hexadecimal | 0x2448 |
| Código HTML | ⑈ |
| LaTeX | \text{OCRDASH} |
| Símbolo | ⑈ |
| Codificación URL (porcentaje UTF-8) | %E2%91%88 |
| Nombre oral / lector de pantalla | Ocr Dash |
| UTF-8 | E2 91 88 |
| UTF-16 | 2448 |
| UTF-32 | 00002448 |
1\documentclass{article}2\usepackage{pifont}3\text{OCRDASH}4\end{document}Puedes escribir el símbolo ocr dash en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9288 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "ocr dash", or use Unicode Hex Input with 2448.
Ctrl + Shift + U, type 2448, 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-dash::before { content: "\2448"; }1<span>⑈</span>La representación del símbolo Ocr Dash en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2448' or String.fromCodePoint(9288) |
| Python | '\N{OCR DASH}' or chr(9288) |
| Rust | '\u{2448}' |
| C / C++ | UTF-8 source or wchar_t with U+2448 |
| Go | string(rune(0x2448)) |
| Ruby | "\u{2448}" |