| Symbol Name | Latin Letter Small Capital H |
| Unicode Version | 1.1 |
| Unicode | U+029C |
| Unicode block | |
| General category | Lowercase Letter (Ll) |
| CSS Code | \029C |
| Hex Code | 0x029C |
| HTML Code | ʜ |
| LaTeX | \text{LATINLETTERSMALLCAPITALH} |
| Symbol | ʜ |
| URL encode (UTF-8 percent) | %CA%9C |
| Spoken / screen reader name | 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}You can type the latin letter small capital h symbol on most modern devices with the help of following methods:
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>Latin Letter Small Capital H symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |