Digit Zero

0

Shortcodes

Copy and paste codes for Digit Zero symbol 0 to use in your websites, apps, blogs, and more.

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

Customize Digit Zero Symbol

Customize 0 symbol as you like and download Digit Zero 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.
0

                        
                    

How to type Digit Zero symbol 0 ?

Using Digit Zero Alt Code:

You can type the Digit Zero symbol 0 using your keyboard by using the Alt Code for Digit Zero. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 48 using the Numpad.
  3. Release the Alt key.

This will make the 0 appear on your screen.

How to add Digit Zero symbol in HTML, CSS, and JS?

Insert 0 Digit Zero using HTML

1. Copy-paste Digit Zero directly:
<span>0</span>
2. HTML Decimal Code:
<span>&#48;</span>
3. Hexadecimal Code:
<span>&#x0030;</span>
Preview: 0

Add Digit Zero symbol with CSS

.digit-zero::before {
    content: '\\030';
}
Preview: Digit Zero

Digit Zero JavaScript Code

1. Direct Symbol:
document.querySelector('.digit-zero').textContent = '0';
2. Unicode Escape for 0:
document.querySelector('.digit-zero').textContent = '\u0030';
Preview: 0