Number Twelve Full Stop

Shortcodes

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

Unicode
U+2493
HTML Code
⒓
HEX Code
⒓
CSS Code
\2493
JS/JSON
\u2493
Unix/C/PHP/JAVA
0x2493
URL-encode
%E2%92%93

Customize Number Twelve Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒓</span>
HTML Code:
<span>&#9363;</span>
HEX Code:
<span>&#x2493;</span>

Add with CSS

.number-twelve-full-stop::before {
  content: '\\2493';
}

Set it in JavaScript

document.querySelector('.number-twelve-full-stop').textContent = '⒓';
copied