Double-struck Capital Gamma

Shortcodes

Copy useful codes for double-struck capital gamma symbol ℾ to use in websites, apps, blogs, and docs.

Unicode
U+213E
HTML Code
ℾ
HEX Code
ℾ
CSS Code
\213E
JS/JSON
\u213E
Unix/C/PHP/JAVA
0x213E
URL-encode
%E2%85%BE

Customize Double-struck Capital Gamma

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

  

How to use Double-struck Capital Gamma Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ℾ</span>
HTML Code:
<span>&#8510;</span>
HEX Code:
<span>&#x213E;</span>

Add with CSS

.double-struck-capital-gamma::before {
  content: '\\213E';
}

Set it in JavaScript

document.querySelector('.double-struck-capital-gamma').textContent = 'ℾ';
copied