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