Number Eighteen Full Stop

Shortcodes

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

Unicode
U+2499
HTML Code
⒙
HEX Code
⒙
CSS Code
\2499
JS/JSON
\u2499
Unix/C/PHP/JAVA
0x2499
URL-encode
%E2%92%99

Customize Number Eighteen Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒙</span>
HTML Code:
<span>&#9369;</span>
HEX Code:
<span>&#x2499;</span>

Add with CSS

.number-eighteen-full-stop::before {
  content: '\\2499';
}

Set it in JavaScript

document.querySelector('.number-eighteen-full-stop').textContent = '⒙';
copied