Dingbat Negative Circled Number Ten

Shortcodes

Copy useful codes for dingbat negative circled number ten symbol ❿ to use in websites, apps, blogs, and docs.

Unicode
U+277F
HTML Code
❿
HEX Code
❿
CSS Code
\277F
JS/JSON
\u277F
Unix/C/PHP/JAVA
0x277F
URL-encode
%E2%9D%BF

Customize Dingbat Negative Circled Number Ten

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

  

How to use Dingbat Negative Circled Number Ten Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❿</span>
HTML Code:
<span>&#10111;</span>
HEX Code:
<span>&#x277F;</span>

Add with CSS

.dingbat-negative-circled-number-ten::before {
  content: '\\277F';
}

Set it in JavaScript

document.querySelector('.dingbat-negative-circled-number-ten').textContent = '❿';
copied