Greek Capital Letter Xi

Ξ

Shortcodes

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

Unicode
U+039E
HTML Code
Ξ
HEX Code
Ξ
CSS Code
\039E
JS/JSON
\u039E
Unix/C/PHP/JAVA
0x039E
URL-encode
%CE%9E

Customize Greek Capital Letter Xi

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

Ξ
  

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

Insert in HTML

1. Direct symbol:
<span>Ξ</span>
HTML Code:
<span>&#926;</span>
HEX Code:
<span>&#x39E;</span>

Add with CSS

.greek-capital-letter-xi::before {
  content: '\\039E';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-xi').textContent = 'Ξ';
copied