Number Seventeen Full Stop

Shortcodes

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

Unicode
U+2498
HTML Code
⒘
HEX Code
⒘
CSS Code
\2498
JS/JSON
\u2498
Unix/C/PHP/JAVA
0x2498
URL-encode
%E2%92%98

Customize Number Seventeen Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒘</span>
HTML Code:
<span>&#9368;</span>
HEX Code:
<span>&#x2498;</span>

Add with CSS

.number-seventeen-full-stop::before {
  content: '\\2498';
}

Set it in JavaScript

document.querySelector('.number-seventeen-full-stop').textContent = '⒘';
copied