Number Twenty Full Stop

Shortcodes

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

Unicode
U+249B
HTML Code
⒛
HEX Code
⒛
CSS Code
\249B
JS/JSON
\u249B
Unix/C/PHP/JAVA
0x249B
URL-encode
%E2%92%9B

Customize Number Twenty Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒛</span>
HTML Code:
<span>&#9371;</span>
HEX Code:
<span>&#x249B;</span>

Add with CSS

.number-twenty-full-stop::before {
  content: '\\249B';
}

Set it in JavaScript

document.querySelector('.number-twenty-full-stop').textContent = '⒛';
copied