| Symboolnaam | Greek Small Letter Digamma |
| Unicode-versie | 3.0 |
| Unicode | U+03DD |
| Unicode-blok | |
| Algemene categorie | Lowercase Letter (Ll) |
| CSS-code | \03DD |
| Hexadecimale code | 0x03DD |
| HTML-code | ϝ |
| LaTeX | \text{GREEKSMALLLETTERDIGAMMA} |
| Symbool | ϝ |
| URL-codering (UTF-8 procent) | %CF%9D |
| Uitgesproken naam / schermlezer | 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}Je kunt het greek small letter digamma-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Greek Small Letter Digamma-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |