Double-struck Small Gamma

Shortcodes

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

Unicode
U+213D
HTML Code
ℽ
HEX Code
ℽ
CSS Code
\213D
JS/JSON
\u213D
Unix/C/PHP/JAVA
0x213D
URL-encode
%E2%85%BD

Customize Double-struck Small Gamma

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

  

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

Insert in HTML

1. Direct symbol:
<span>ℽ</span>
HTML Code:
<span>&#8509;</span>
HEX Code:
<span>&#x213D;</span>

Add with CSS

.double-struck-small-gamma::before {
  content: '\\213D';
}

Set it in JavaScript

document.querySelector('.double-struck-small-gamma').textContent = 'ℽ';
copied