Digit Three

3

Shortcodes

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

Unicode
U+0033
Alt Code
51
HTML Code
3
HEX Code
3
CSS Code
\033
JS/JSON
\u0033
Unix/C/PHP/JAVA
0x33
URL-encode
3
copied

Customize Digit Three Symbol

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

                        
                    

How to type Digit Three symbol 3 ?

Using Digit Three Alt Code:

You can type the Digit Three symbol 3 using your keyboard by using the Alt Code for Digit Three. 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 51 using the Numpad.
  3. Release the Alt key.

This will make the 3 appear on your screen.

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

Insert 3 Digit Three using HTML

1. Copy-paste Digit Three directly:
<span>3</span>
2. HTML Decimal Code:
<span>&#51;</span>
3. Hexadecimal Code:
<span>&#x0033;</span>
Preview: 3

Add Digit Three symbol with CSS

.digit-three::before {
    content: '\\033';
}
Preview: Digit Three

Digit Three JavaScript Code

1. Direct Symbol:
document.querySelector('.digit-three').textContent = '3';
2. Unicode Escape for 3:
document.querySelector('.digit-three').textContent = '\u0033';
Preview: 3