| 記号名 | Latin Small Letter Lum |
| Unicodeバージョン | 5.1 |
| Unicode | U+A772 |
| Unicodeブロック | |
| 一般カテゴリ | Lowercase Letter (Ll) |
| CSSコード | \A772 |
| 16進コード | 0xA772 |
| HTMLコード | ꝲ |
| LaTeX | \text{LATINSMALLLETTERLUM} |
| 記号 | ꝲ |
| URLエンコード(UTF-8パーセント) | %EA%9D%B2 |
| 読み上げ名 / スクリーンリーダー | Latin Small Letter Lum |
| UTF-8 | EA 9D B2 |
| UTF-16 | A772 |
| UTF-32 | 0000A772 |
1\documentclass{article}2\usepackage{pifont}3\text{LATINSMALLLETTERLUM}4\end{document}以下の方法でほとんどの最新デバイスでlatin small letter lum記号を入力できます:
Alt + 42866 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter lum", or use Unicode Hex Input with A772.
Ctrl + Shift + U, type a772, 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-lum::before { content: "\A772"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>ꝲ</span>各プログラミング言語におけるLatin Small Letter Lum記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\uA772' or String.fromCodePoint(42866) |
| Python | '\N{LATIN SMALL LETTER LUM}' or chr(42866) |
| Rust | '\u{A772}' |
| C / C++ | UTF-8 source or wchar_t with U+A772 |
| Go | string(rune(0xA772)) |
| Ruby | "\u{A772}" |