Right Outer Join

Shortcodes

Copy and paste codes for Right Outer Join symbol ⟖ to use in your websites, apps, blogs, and more.

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

Customize Right Outer Join Symbol

Customize ⟖ symbol as you like and download Right Outer Join as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Right Outer Join symbol in HTML, CSS, and JS?

Insert ⟖ Right Outer Join using HTML

1. Copy-paste Right Outer Join directly:
<span>⟖</span>
2. HTML Decimal Code:
<span>&#10198;</span>
3. Hexadecimal Code:
<span>&#x27D6;</span>
Preview:

Add Right Outer Join symbol with CSS

.right-outer-join::before {
    content: '\\27D6';
}
Preview: Right Outer Join

Right Outer Join JavaScript Code

1. Direct Symbol:
document.querySelector('.right-outer-join').textContent = '⟖';
2. Unicode Escape for ⟖:
document.querySelector('.right-outer-join').textContent = '\u27D6';
Preview: