Dingbat Negative Circled Digit Nine

Shortcodes

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

Unicode
U+277E
HTML Code
❾
HEX Code
❾
CSS Code
\277E
JS/JSON
\u277E
Unix/C/PHP/JAVA
0x277E
URL-encode
%E2%9D%BE

Customize Dingbat Negative Circled Digit Nine

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

  

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

Insert in HTML

1. Direct symbol:
<span>❾</span>
HTML Code:
<span>&#10110;</span>
HEX Code:
<span>&#x277E;</span>

Add with CSS

.dingbat-negative-circled-digit-nine::before {
  content: '\\277E';
}

Set it in JavaScript

document.querySelector('.dingbat-negative-circled-digit-nine').textContent = '❾';
copied