| Nom du symbole | Latin Small Letter Oo |
| Version Unicode | 5.1 |
| Unicode | U+A74F |
| Bloc Unicode | |
| Catégorie générale | Lowercase Letter (Ll) |
| Code CSS | \A74F |
| Code hexadécimal | 0xA74F |
| Code HTML | ꝏ |
| LaTeX | \text{LATINSMALLLETTEROO} |
| Symbole | ꝏ |
| Encodage URL (pourcent UTF-8) | %EA%9D%8F |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole latin small letter oo sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Latin Small Letter Oo dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |