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