| Symbol Name | Greek Capital Letter Chi |
| Unicode Version | 1.1 |
| Unicode | U+03A7 |
| Unicode block | |
| General category | Uppercase Letter (Lu) |
| CSS Code | \03A7 |
| Hex Code | 0x03A7 |
| HTML Code | Χ |
| LaTeX | X |
| Symbol | Χ |
| URL encode (UTF-8 percent) | %CE%A7 |
| Spoken / screen reader name | Greek Capital Letter Chi |
| UTF-8 | CE A7 |
| UTF-16 | 03A7 |
| UTF-32 | 000003A7 |
1\documentclass{article}2\usepackage{pifont}3X4\end{document}You can type the greek capital letter chi symbol on most modern devices with the help of following methods:
Alt + 935 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "greek capital letter chi", or use Unicode Hex Input with 03A7.
Ctrl + Shift + U, type 03a7, 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-chi::before { content: "\03A7"; font-family: "Times New Roman", "Palatino Linotype", "DejaVu Serif", serif; }1<span>Χ</span>Greek Capital Letter Chi symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u03A7' or String.fromCodePoint(935) |
| Python | '\N{GREEK CAPITAL LETTER CHI}' or chr(935) |
| Rust | '\u{03A7}' |
| C / C++ | UTF-8 source or wchar_t with U+03A7 |
| Go | string(rune(0x03A7)) |
| Ruby | "\u{03A7}" |