Negative Circled Number Thirteen

Shortcodes

Copy useful codes for negative circled number thirteen symbol ⓭ to use in websites, apps, blogs, and docs.

Unicode
U+24ED
HTML Code
⓭
HEX Code
⓭
CSS Code
\24ED
JS/JSON
\u24ED
Unix/C/PHP/JAVA
0x24ED
URL-encode
%E2%93%AD

Customize Negative Circled Number Thirteen

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

  

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

Insert in HTML

1. Direct symbol:
<span>⓭</span>
HTML Code:
<span>&#9453;</span>
HEX Code:
<span>&#x24ED;</span>

Add with CSS

.negative-circled-number-thirteen::before {
  content: '\\24ED';
}

Set it in JavaScript

document.querySelector('.negative-circled-number-thirteen').textContent = '⓭';
copied