| Symbol Name | Greek Small Letter Digamma |
| Unicode Version | 3.0 |
| Unicode | U+03DD |
| Unicode block | |
| General category | Lowercase Letter (Ll) |
| CSS Code | \03DD |
| Hex Code | 0x03DD |
| HTML Code | ϝ |
| LaTeX | \text{GREEKSMALLLETTERDIGAMMA} |
| Symbol | ϝ |
| URL encode (UTF-8 percent) | %CF%9D |
| Spoken / screen reader name | Greek Small Letter Digamma |
| UTF-8 | CF 9D |
| UTF-16 | 03DD |
| UTF-32 | 000003DD |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKSMALLLETTERDIGAMMA}4\end{document}You can type the greek small letter digamma symbol on most modern devices with the help of following methods:
Alt + 989 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek small letter digamma", or use Unicode Hex Input with 03DD.
Ctrl + Shift + U, type 03dd, 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.digamma::before { content: "\03DD"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>ϝ</span>Greek Small Letter Digamma symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u03DD' or String.fromCodePoint(989) |
| Python | '\N{GREEK SMALL LETTER DIGAMMA}' or chr(989) |
| Rust | '\u{03DD}' |
| C / C++ | UTF-8 source or wchar_t with U+03DD |
| Go | string(rune(0x03DD)) |
| Ruby | "\u{03DD}" |