| 記号名 | Latin Letter Small Capital H |
| Unicodeバージョン | 1.1 |
| Unicode | U+029C |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \029C |
| 16進コード | 0x029C |
| HTMLコード | ʜ |
| LaTeX | \text{LATINLETTERSMALLCAPITALH} |
| 記号 | ʜ |
| URLエンコード(UTF-8パーセント) | %CA%9C |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでlatin letter small capital h記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |