Digit Two

2

Shortcodes

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

Unicode
U+0032
Alt Code
50
HTML Code
2
HEX Code
2
CSS Code
\0032
JS/JSON
\u0032
Unix/C/PHP/JAVA
0x32
URL-encode
2

Customize Digit Two

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

2
  

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

Insert in HTML

1. Direct symbol:
<span>2</span>
HTML Code:
<span>&#50;</span>
HEX Code:
<span>&#x0032;</span>

Add with CSS

.digit-two::before {
  content: '\\0032';
}

Set it in JavaScript

document.querySelector('.digit-two').textContent = '2';
copied