Benzene Ring

Shortcodes

Copy useful codes for benzene ring symbol ⌬ to use in websites, apps, blogs, and docs.

Unicode
U+232C
HTML Code
⌬
HEX Code
⌬
CSS Code
\232C
JS/JSON
\u232C
Unix/C/PHP/JAVA
0x232C
URL-encode
%E2%8C%AC

Customize Benzene Ring

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

  

How to use Benzene Ring Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌬</span>
HTML Code:
<span>&#9004;</span>
HEX Code:
<span>&#x232C;</span>

Add with CSS

.benzene-ring::before {
  content: '\\232C';
}

Set it in JavaScript

document.querySelector('.benzene-ring').textContent = '⌬';
copied