| Nombre del símbolo | Greek Letter Digamma |
| Versión Unicode | 1.1 |
| Unicode | U+03DC |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \03DC |
| Código hexadecimal | 0x03DC |
| Código HTML | Ϝ |
| LaTeX | \text{GREEKLETTERDIGAMMA} |
| Símbolo | Ϝ |
| Codificación URL (porcentaje UTF-8) | %CF%9C |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo greek letter digamma en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Greek Letter Digamma en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |