Digit Three

3

Shortcodes

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

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

Customize Digit Three

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

3
  

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

Insert in HTML

1. Direct symbol:
<span>3</span>
HTML Code:
<span>&#51;</span>
HEX Code:
<span>&#x0033;</span>

Add with CSS

.digit-three::before {
  content: '\\0033';
}

Set it in JavaScript

document.querySelector('.digit-three').textContent = '3';
copied