Two Asterisks Aligned Vertically

Shortcodes

Copy useful codes for two asterisks aligned vertically symbol ⁑ to use in websites, apps, blogs, and docs.

Unicode
U+2051
HTML Code
⁑
HEX Code
⁑
CSS Code
\2051
JS/JSON
\u2051
Unix/C/PHP/JAVA
0x2051
URL-encode
%E2%81%91

Customize Two Asterisks Aligned Vertically

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

  

How to use Two Asterisks Aligned Vertically Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁑</span>
HTML Code:
<span>&#8273;</span>
HEX Code:
<span>&#x2051;</span>

Add with CSS

.two-asterisks-aligned-vertically::before {
  content: '\\2051';
}

Set it in JavaScript

document.querySelector('.two-asterisks-aligned-vertically').textContent = '⁑';
copied