Trigram For Heaven

Shortcodes

Copy useful codes for trigram for heaven symbol ☰ to use in websites, apps, blogs, and docs.

Unicode
U+2630
HTML Code
☰
HEX Code
☰
CSS Code
\2630
JS/JSON
\u2630
Unix/C/PHP/JAVA
0x2630
URL-encode
%E2%98%B0

Customize Trigram For Heaven

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

  

How to use Trigram For Heaven Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>☰</span>
HTML Code:
<span>&#9776;</span>
HEX Code:
<span>&#x2630;</span>

Add with CSS

.trigram-for-heaven::before {
  content: '\\2630';
}

Set it in JavaScript

document.querySelector('.trigram-for-heaven').textContent = '☰';
copied