| Nombre del símbolo | Greek Capital Letter Yot |
| Versión Unicode | 7.0 |
| Unicode | U+037F |
| Bloque Unicode | |
| Categoría general | Uppercase Letter (Lu) |
| Código CSS | \037F |
| Código hexadecimal | 0x037F |
| Código HTML | Ϳ |
| LaTeX | \text{GREEKCAPITALLETTERYOT} |
| Símbolo | Ϳ |
| Codificación URL (porcentaje UTF-8) | %CD%BF |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo greek capital letter yot en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Greek Capital Letter Yot en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |