Cylindricity

Shortcodes

Copy useful codes for cylindricity symbol ⌭ to use in websites, apps, blogs, and docs.

Unicode
U+232D
HTML Code
⌭
HEX Code
⌭
CSS Code
\232D
JS/JSON
\u232D
Unix/C/PHP/JAVA
0x232D
URL-encode
%E2%8C%AD

Customize Cylindricity

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

  

How to use Cylindricity Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌭</span>
HTML Code:
<span>&#9005;</span>
HEX Code:
<span>&#x232D;</span>

Add with CSS

.cylindricity::before {
  content: '\\232D';
}

Set it in JavaScript

document.querySelector('.cylindricity').textContent = '⌭';
copied