| Nom du symbole | Greek Small Letter Digamma |
| Version Unicode | 3.0 |
| Unicode | U+03DD |
| Bloc Unicode | |
| Catégorie générale | Lowercase Letter (Ll) |
| Code CSS | \03DD |
| Code hexadécimal | 0x03DD |
| Code HTML | ϝ |
| LaTeX | \text{GREEKSMALLLETTERDIGAMMA} |
| Symbole | ϝ |
| Encodage URL (pourcent UTF-8) | %CF%9D |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole greek small letter digamma sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Greek Small Letter Digamma dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |