Superset Preceding Solidus

Shortcodes

Copy useful codes for superset preceding solidus symbol ⟉ to use in websites, apps, blogs, and docs.

Unicode
U+27C9
HTML Code
⟉
HEX Code
⟉
CSS Code
\27C9
JS/JSON
\u27C9
Unix/C/PHP/JAVA
0x27C9
URL-encode
%E2%9F%89

Customize Superset Preceding Solidus

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

  

How to use Superset Preceding Solidus Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟉</span>
HTML Code:
<span>&#10185;</span>
HEX Code:
<span>&#x27C9;</span>

Add with CSS

.superset-preceding-solidus::before {
  content: '\\27C9';
}

Set it in JavaScript

document.querySelector('.superset-preceding-solidus').textContent = '⟉';
copied