All Around-profile

Shortcodes

Copy useful codes for all around-profile symbol ⌮ to use in websites, apps, blogs, and docs.

Unicode
U+232E
HTML Code
⌮
HEX Code
⌮
CSS Code
\232E
JS/JSON
\u232E
Unix/C/PHP/JAVA
0x232E
URL-encode
%E2%8C%AE

Customize All Around-profile

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

  

How to use All Around-profile Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌮</span>
HTML Code:
<span>&#9006;</span>
HEX Code:
<span>&#x232E;</span>

Add with CSS

.all-around-profile::before {
  content: '\\232E';
}

Set it in JavaScript

document.querySelector('.all-around-profile').textContent = '⌮';
copied