Greek Small Letter Chi

χ

Shortcodes

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

Unicode
U+03C7
HTML Code
χ
HTML Entity
χ
HEX Code
χ
CSS Code
\03C7
JS/JSON
\u03C7
Unix/C/PHP/JAVA
0x03C7
URL-encode
%CF%87

Customize Greek Small Letter Chi

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

χ
  

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

Insert in HTML

1. Direct symbol:
<span>χ</span>
HTML Code:
<span>&#967;</span>
HTML Entity:
<span>&chi;</span>
HEX Code:
<span>&#x3C7;</span>

Add with CSS

.greek-small-letter-chi::before {
  content: '\\03C7';
}

Set it in JavaScript

document.querySelector('.greek-small-letter-chi').textContent = 'χ';
copied