| Nome del simbolo | Greek Capital Letter Yot |
| Versione Unicode | 7.0 |
| Unicode | U+037F |
| Blocco Unicode | |
| Categoria generale | Uppercase Letter (Lu) |
| Codice CSS | \037F |
| Codice esadecimale | 0x037F |
| Codice HTML | Ϳ |
| LaTeX | \text{GREEKCAPITALLETTERYOT} |
| Simbolo | Ϳ |
| Codifica URL (percentuale UTF-8) | %CD%BF |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo greek capital letter yot sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Greek Capital Letter Yot nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |