Right Outer Join

Shortcodes

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

Unicode
U+27D6
HTML Code
⟖
HEX Code
⟖
CSS Code
\27D6
JS/JSON
\u27D6
Unix/C/PHP/JAVA
0x27D6
URL-encode
%E2%9F%96

Customize Right Outer Join

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟖</span>
HTML Code:
<span>&#10198;</span>
HEX Code:
<span>&#x27D6;</span>

Add with CSS

.right-outer-join::before {
  content: '\\27D6';
}

Set it in JavaScript

document.querySelector('.right-outer-join').textContent = '⟖';
copied