Number Fourteen Full Stop

Shortcodes

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

Unicode
U+2495
HTML Code
⒕
HEX Code
⒕
CSS Code
\2495
JS/JSON
\u2495
Unix/C/PHP/JAVA
0x2495
URL-encode
%E2%92%95

Customize Number Fourteen Full Stop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⒕</span>
HTML Code:
<span>&#9365;</span>
HEX Code:
<span>&#x2495;</span>

Add with CSS

.number-fourteen-full-stop::before {
  content: '\\2495';
}

Set it in JavaScript

document.querySelector('.number-fourteen-full-stop').textContent = '⒕';
copied