| 記号名 | Greek Letter Digamma |
| Unicodeバージョン | 1.1 |
| Unicode | U+03DC |
| Unicodeブロック | |
| 一般カテゴリ | Uppercase Letter (Lu) |
| CSSコード | \03DC |
| 16進コード | 0x03DC |
| HTMLコード | Ϝ |
| LaTeX | \text{GREEKLETTERDIGAMMA} |
| 記号 | Ϝ |
| URLエンコード(UTF-8パーセント) | %CF%9C |
| 読み上げ名 / スクリーンリーダー | Greek Letter Digamma |
| UTF-8 | CF 9C |
| UTF-16 | 03DC |
| UTF-32 | 000003DC |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKLETTERDIGAMMA}4\end{document}以下の方法でほとんどの最新デバイスでgreek letter digamma記号を入力できます:
Alt + 988 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek letter digamma", or use Unicode Hex Input with 03DC.
Ctrl + Shift + U, type 03dc, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Greek keyboard.
Paste from this page or use a keyboard with Greek letter support.
1span.capital-digamma::before { content: "\03DC"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Ϝ</span>各プログラミング言語におけるGreek Letter Digamma記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u03DC' or String.fromCodePoint(988) |
| Python | '\N{GREEK LETTER DIGAMMA}' or chr(988) |
| Rust | '\u{03DC}' |
| C / C++ | UTF-8 source or wchar_t with U+03DC |
| Go | string(rune(0x03DC)) |
| Ruby | "\u{03DC}" |