| Nombre del símbolo | Greek Capital Kai Symbol |
| Versión Unicode | 5.1 |
| Unicode | U+03CF |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \03CF |
| Código hexadecimal | 0x03CF |
| Código HTML | Ϗ |
| LaTeX | \text{GREEKCAPITALKAISYMBOL} |
| Símbolo | Ϗ |
| Codificación URL (porcentaje UTF-8) | %CF%8F |
| Nombre oral / lector de pantalla | Greek Capital Kai Symbol |
| UTF-8 | CF 8F |
| UTF-16 | 03CF |
| UTF-32 | 000003CF |
1\documentclass{article}2\usepackage{pifont}3\text{GREEKCAPITALKAISYMBOL}4\end{document}Puedes escribir el símbolo greek capital kai en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 975 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital kai symbol", or use Unicode Hex Input with 03CF.
Ctrl + Shift + U, type 03cf, 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.greek-capital-kai-symbol::before { content: "\03CF"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Ϗ</span>La representación del símbolo Greek Capital Kai en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u03CF' or String.fromCodePoint(975) |
| Python | '\N{GREEK CAPITAL KAI SYMBOL}' or chr(975) |
| Rust | '\u{03CF}' |
| C / C++ | UTF-8 source or wchar_t with U+03CF |
| Go | string(rune(0x03CF)) |
| Ruby | "\u{03CF}" |