Number Sixteen Full Stop

Shortcodes

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

Unicode
U+2497
HTML Code
⒗
HEX Code
⒗
CSS Code
\2497
JS/JSON
\u2497
Unix/C/PHP/JAVA
0x2497
URL-encode
%E2%92%97

Customize Number Sixteen Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒗</span>
HTML Code:
<span>&#9367;</span>
HEX Code:
<span>&#x2497;</span>

Add with CSS

.number-sixteen-full-stop::before {
  content: '\\2497';
}

Set it in JavaScript

document.querySelector('.number-sixteen-full-stop').textContent = '⒗';
copied