| Symbol Name | Greek Letter Digamma |
| Unicode Version | 1.1 |
| Unicode | U+03DC |
| Unicode block | |
| General category | Uppercase Letter (Lu) |
| CSS Code | \03DC |
| Hex Code | 0x03DC |
| HTML Code | Ϝ |
| LaTeX | \text{GREEKLETTERDIGAMMA} |
| Symbol | Ϝ |
| URL encode (UTF-8 percent) | %CF%9C |
| Spoken / screen reader name | 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}You can type the greek letter digamma symbol on most modern devices with the help of following methods:
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 symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |