Turned Not Sign

Shortcodes

Copy useful codes for turned not sign ⌙ to use in websites, apps, blogs, and docs.

Unicode
U+2319
HTML Code
⌙
HEX Code
⌙
CSS Code
\2319
JS/JSON
\u2319
Unix/C/PHP/JAVA
0x2319
URL-encode
%E2%8C%99

Customize Turned Not Sign

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

  

How to use Turned Not Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌙</span>
HTML Code:
<span>&#8985;</span>
HEX Code:
<span>&#x2319;</span>

Add with CSS

.turned-not-sign::before {
  content: '\\2319';
}

Set it in JavaScript

document.querySelector('.turned-not-sign').textContent = '⌙';
copied