Number Fifteen Full Stop

Shortcodes

Copy useful codes for number fifteen full stop symbol ⒖ to use in websites, apps, blogs, and docs.

Unicode
U+2496
HTML Code
⒖
HEX Code
⒖
CSS Code
\2496
JS/JSON
\u2496
Unix/C/PHP/JAVA
0x2496
URL-encode
%E2%92%96

Customize Number Fifteen Full Stop

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

  

How to use Number Fifteen Full Stop Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⒖</span>
HTML Code:
<span>&#9366;</span>
HEX Code:
<span>&#x2496;</span>

Add with CSS

.number-fifteen-full-stop::before {
  content: '\\2496';
}

Set it in JavaScript

document.querySelector('.number-fifteen-full-stop').textContent = '⒖';
copied