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