Full Outer Join

Shortcodes

Copy useful codes for full outer join symbol ⟗ to use in websites, apps, blogs, and docs.

Unicode
U+27D7
HTML Code
⟗
HEX Code
⟗
CSS Code
\27D7
JS/JSON
\u27D7
Unix/C/PHP/JAVA
0x27D7
URL-encode
%E2%9F%97

Customize Full Outer Join

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

  

How to use Full Outer Join Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟗</span>
HTML Code:
<span>&#10199;</span>
HEX Code:
<span>&#x27D7;</span>

Add with CSS

.full-outer-join::before {
  content: '\\27D7';
}

Set it in JavaScript

document.querySelector('.full-outer-join').textContent = '⟗';
copied