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