Dingbat Negative Circled Digit Two

Shortcodes

Copy useful codes for dingbat negative circled digit two symbol ❷ to use in websites, apps, blogs, and docs.

Unicode
U+2777
HTML Code
❷
HEX Code
❷
CSS Code
\2777
JS/JSON
\u2777
Unix/C/PHP/JAVA
0x2777
URL-encode
%E2%9D%B7

Customize Dingbat Negative Circled Digit Two

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

  

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

Insert in HTML

1. Direct symbol:
<span>❷</span>
HTML Code:
<span>&#10103;</span>
HEX Code:
<span>&#x2777;</span>

Add with CSS

.dingbat-negative-circled-digit-two::before {
  content: '\\2777';
}

Set it in JavaScript

document.querySelector('.dingbat-negative-circled-digit-two').textContent = '❷';
copied