Digit Seven

7

Shortcodes

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

Unicode
U+0037
Alt Code
55
HTML Code
7
HEX Code
7
CSS Code
\037
JS/JSON
\u0037
Unix/C/PHP/JAVA
0x37
URL-encode
7
copied

Customize Digit Seven Symbol

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

                        
                    

How to type Digit Seven symbol 7 ?

Using Digit Seven Alt Code:

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

This will make the 7 appear on your screen.

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

Insert 7 Digit Seven using HTML

1. Copy-paste Digit Seven directly:
<span>7</span>
2. HTML Decimal Code:
<span>&#55;</span>
3. Hexadecimal Code:
<span>&#x0037;</span>
Preview: 7

Add Digit Seven symbol with CSS

.digit-seven::before {
    content: '\\037';
}
Preview: Digit Seven

Digit Seven JavaScript Code

1. Direct Symbol:
document.querySelector('.digit-seven').textContent = '7';
2. Unicode Escape for 7:
document.querySelector('.digit-seven').textContent = '\u0037';
Preview: 7