Double-struck Capital Z

Shortcodes

Copy and paste codes for Double-struck Capital Z symbol ℤ to use in your websites, apps, blogs, and more.

Unicode
U+2124
HTML Code
ℤ
HTML Entity
ℤ
HEX Code
ℤ
CSS Code
\2124
JS/JSON
\u2124
Unix/C/PHP/JAVA
0x2124
URL-encode
%E2%84%A4
copied

Customize Double-struck Capital Z Symbol

Customize ℤ symbol as you like and download Double-struck Capital Z as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Double-struck Capital Z symbol in HTML, CSS, and JS?

Insert ℤ Double-struck Capital Z using HTML

1. Copy-paste Double-struck Capital Z directly:
<span>ℤ</span>
2. HTML Decimal Code:
<span>&#8484;</span>
3. HTML Entity:
<span>&Zopf;</span>
4. Hexadecimal Code:
<span>&#x2124;</span>
Preview:

Add Double-struck Capital Z symbol with CSS

.double-struck-capital-z::before {
    content: '\\2124';
}
Preview: Double-struck Capital Z

Double-struck Capital Z JavaScript Code

1. Direct Symbol:
document.querySelector('.double-struck-capital-z').textContent = 'ℤ';
2. Unicode Escape for ℤ:
document.querySelector('.double-struck-capital-z').textContent = '\u2124';
Preview: