| Nome del simbolo | Latin Letter Small Capital H |
| Versione Unicode | 1.1 |
| Unicode | U+029C |
| Blocco Unicode | |
| Categoria generale | Lowercase Letter (Ll) |
| Codice CSS | \029C |
| Codice esadecimale | 0x029C |
| Codice HTML | ʜ |
| LaTeX | \text{LATINLETTERSMALLCAPITALH} |
| Simbolo | ʜ |
| Codifica URL (percentuale UTF-8) | %CA%9C |
| Nome parlato / screen reader | Latin Letter Small Capital H |
| UTF-8 | CA 9C |
| UTF-16 | 029C |
| UTF-32 | 0000029C |
1\documentclass{article}2\usepackage{pifont}3\text{LATINLETTERSMALLCAPITALH}4\end{document}Puoi digitare il simbolo latin letter small capital h sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 668 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin letter small capital h", or use Unicode Hex Input with 029C.
Ctrl + Shift + U, type 029c, 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.small-capital-h::before { content: "\029C"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ʜ</span>La rappresentazione del simbolo Latin Letter Small Capital H nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u029C' or String.fromCodePoint(668) |
| Python | '\N{LATIN LETTER SMALL CAPITAL H}' or chr(668) |
| Rust | '\u{029C}' |
| C / C++ | UTF-8 source or wchar_t with U+029C |
| Go | string(rune(0x029C)) |
| Ruby | "\u{029C}" |