Digit Zero

0

Shortcodes

Copy useful codes for digit zero symbol 0 to use in websites, apps, blogs, and docs.

Unicode
U+0030
Alt Code
48
HTML Code
0
HEX Code
0
CSS Code
\0030
JS/JSON
\u0030
Unix/C/PHP/JAVA
0x30
URL-encode
0

Customize Digit Zero

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

0
  

How to use Digit Zero Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>0</span>
HTML Code:
<span>&#48;</span>
HEX Code:
<span>&#x0030;</span>

Add with CSS

.digit-zero::before {
  content: '\\0030';
}

Set it in JavaScript

document.querySelector('.digit-zero').textContent = '0';
copied