Digit Nine Full Stop

Shortcodes

Copy useful codes for digit nine full stop symbol ⒐ to use in websites, apps, blogs, and docs.

Unicode
U+2490
HTML Code
⒐
HEX Code
⒐
CSS Code
\2490
JS/JSON
\u2490
Unix/C/PHP/JAVA
0x2490
URL-encode
%E2%92%90

Customize Digit Nine Full Stop

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

  

How to use Digit Nine Full Stop Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⒐</span>
HTML Code:
<span>&#9360;</span>
HEX Code:
<span>&#x2490;</span>

Add with CSS

.digit-nine-full-stop::before {
  content: '\\2490';
}

Set it in JavaScript

document.querySelector('.digit-nine-full-stop').textContent = '⒐';
copied