Number Thirteen Full Stop

Shortcodes

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

Unicode
U+2494
HTML Code
⒔
HEX Code
⒔
CSS Code
\2494
JS/JSON
\u2494
Unix/C/PHP/JAVA
0x2494
URL-encode
%E2%92%94

Customize Number Thirteen Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒔</span>
HTML Code:
<span>&#9364;</span>
HEX Code:
<span>&#x2494;</span>

Add with CSS

.number-thirteen-full-stop::before {
  content: '\\2494';
}

Set it in JavaScript

document.querySelector('.number-thirteen-full-stop').textContent = '⒔';
copied