| Nom du symbole | Greek Capital Letter Xi |
| Version Unicode | 1.1 |
| Unicode | U+039E |
| Bloc Unicode | |
| Catégorie générale | Uppercase Letter (Lu) |
| Code CSS | \039E |
| Code hexadécimal | 0x039E |
| Code HTML | Ξ |
| LaTeX | \Xi |
| Symbole | Ξ |
| Encodage URL (pourcent UTF-8) | %CE%9E |
| Nom oral / lecteur d’écran | Greek Capital Letter Xi |
| UTF-8 | CE 9E |
| UTF-16 | 039E |
| UTF-32 | 0000039E |
1\documentclass{article}2\usepackage{pifont}3\Xi4\end{document}Vous pouvez saisir le symbole greek capital letter xi sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 926 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital letter xi", or use Unicode Hex Input with 039E.
Ctrl + Shift + U, type 039e, 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-xi::before { content: "\039E"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Ξ</span>La représentation du symbole Greek Capital Letter Xi dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u039E' or String.fromCodePoint(926) |
| Python | '\N{GREEK CAPITAL LETTER XI}' or chr(926) |
| Rust | '\u{039E}' |
| C / C++ | UTF-8 source or wchar_t with U+039E |
| Go | string(rune(0x039E)) |
| Ruby | "\u{039E}" |