Digit Four

4

Shortcodes

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

Unicode
U+0034
Alt Code
52
HTML Code
4
HEX Code
4
CSS Code
\0034
JS/JSON
\u0034
Unix/C/PHP/JAVA
0x34
URL-encode
4

Customize Digit Four

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

4
  

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

Insert in HTML

1. Direct symbol:
<span>4</span>
HTML Code:
<span>&#52;</span>
HEX Code:
<span>&#x0034;</span>

Add with CSS

.digit-four::before {
  content: '\\0034';
}

Set it in JavaScript

document.querySelector('.digit-four').textContent = '4';
copied