Digit Seven

7

Shortcodes

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

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

Customize Digit Seven

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

7
  

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

Insert in HTML

1. Direct symbol:
<span>7</span>
HTML Code:
<span>&#55;</span>
HEX Code:
<span>&#x0037;</span>

Add with CSS

.digit-seven::before {
  content: '\\0037';
}

Set it in JavaScript

document.querySelector('.digit-seven').textContent = '7';
copied