| Nom du symbole | Latin Small Letter Num |
| Version Unicode | 5.1 |
| Unicode | U+A774 |
| Bloc Unicode | |
| Catégorie générale | Lowercase Letter (Ll) |
| Code CSS | \A774 |
| Code hexadécimal | 0xA774 |
| Code HTML | ꝴ |
| LaTeX | \text{LATINSMALLLETTERNUM} |
| Symbole | ꝴ |
| Encodage URL (pourcent UTF-8) | %EA%9D%B4 |
| Nom oral / lecteur d’écran | Latin Small Letter Num |
| UTF-8 | EA 9D B4 |
| UTF-16 | A774 |
| UTF-32 | 0000A774 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTERNUM}4\end{document}Vous pouvez saisir le symbole latin small letter num sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 42868 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter num", or use Unicode Hex Input with A774.
Ctrl + Shift + U, type a774, 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-num::before { content: "\A774"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ꝴ</span>La représentation du symbole Latin Small Letter Num dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\uA774' or String.fromCodePoint(42868) |
| Python | '\N{LATIN SMALL LETTER NUM}' or chr(42868) |
| Rust | '\u{A774}' |
| C / C++ | UTF-8 source or wchar_t with U+A774 |
| Go | string(rune(0xA774)) |
| Ruby | "\u{A774}" |