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