| Nombre del símbolo | Latin Small Letter Num |
| Versión Unicode | 5.1 |
| Unicode | U+A774 |
| Bloque Unicode | |
| Categoría general | Lowercase Letter (Ll) |
| Código CSS | \A774 |
| Código hexadecimal | 0xA774 |
| Código HTML | ꝴ |
| LaTeX | \text{LATINSMALLLETTERNUM} |
| Símbolo | ꝴ |
| Codificación URL (porcentaje UTF-8) | %EA%9D%B4 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo latin small letter num en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Latin Small Letter Num en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |