Number Nineteen Full Stop

Shortcodes

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

Unicode
U+249A
HTML Code
⒚
HEX Code
⒚
CSS Code
\249A
JS/JSON
\u249A
Unix/C/PHP/JAVA
0x249A
URL-encode
%E2%92%9A

Customize Number Nineteen Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒚</span>
HTML Code:
<span>&#9370;</span>
HEX Code:
<span>&#x249A;</span>

Add with CSS

.number-nineteen-full-stop::before {
  content: '\\249A';
}

Set it in JavaScript

document.querySelector('.number-nineteen-full-stop').textContent = '⒚';
copied