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