| Nombre del símbolo | Latin Small Letter Oo |
| Versión Unicode | 5.1 |
| Unicode | U+A74F |
| Bloque Unicode | |
| Categoría general | Lowercase Letter (Ll) |
| Código CSS | \A74F |
| Código hexadecimal | 0xA74F |
| Código HTML | ꝏ |
| LaTeX | \text{LATINSMALLLETTEROO} |
| Símbolo | ꝏ |
| Codificación URL (porcentaje UTF-8) | %EA%9D%8F |
| Nombre oral / lector de pantalla | Latin Small Letter Oo |
| UTF-8 | EA 9D 8F |
| UTF-16 | A74F |
| UTF-32 | 0000A74F |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTEROO}4\end{document}Puedes escribir el símbolo latin small letter oo en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 42831 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter oo", or use Unicode Hex Input with A74F.
Ctrl + Shift + U, type a74f, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.latin-small-letter-oo::before { content: "\A74F"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ꝏ</span>La representación del símbolo Latin Small Letter Oo en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\uA74F' or String.fromCodePoint(42831) |
| Python | '\N{LATIN SMALL LETTER OO}' or chr(42831) |
| Rust | '\u{A74F}' |
| C / C++ | UTF-8 source or wchar_t with U+A74F |
| Go | string(rune(0xA74F)) |
| Ruby | "\u{A74F}" |