Greek Capital Letter Chi

Χ

Shortcodes

Copy useful codes for greek capital letter chi symbol Χ to use in websites, apps, blogs, and docs.

Unicode
U+03A7
HTML Code
Χ
HTML Entity
Χ
HEX Code
Χ
CSS Code
\03A7
JS/JSON
\u03A7
Unix/C/PHP/JAVA
0x03A7
URL-encode
%CE%A7

Customize Greek Capital Letter Chi

Customize Χ, download it as SVG or PNG, or copy the generated HTML snippet.

Χ
  

How to use Greek Capital Letter Chi Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Χ</span>
HTML Code:
<span>&#935;</span>
HTML Entity:
<span>&Chi;</span>
HEX Code:
<span>&#x3A7;</span>

Add with CSS

.greek-capital-letter-chi::before {
  content: '\\03A7';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-chi').textContent = 'Χ';
copied