Left Outer Join

Shortcodes

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

Unicode
U+27D5
HTML Code
⟕
HEX Code
⟕
CSS Code
\27D5
JS/JSON
\u27D5
Unix/C/PHP/JAVA
0x27D5
URL-encode
%E2%9F%95
copied

Customize Left Outer Join Symbol

Customize ⟕ symbol as you like and download Left 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 Left Outer Join symbol in HTML, CSS, and JS?

Insert ⟕ Left Outer Join using HTML

1. Copy-paste Left Outer Join directly:
<span>⟕</span>
2. HTML Decimal Code:
<span>&#10197;</span>
3. Hexadecimal Code:
<span>&#x27D5;</span>
Preview:

Add Left Outer Join symbol with CSS

.left-outer-join::before {
    content: '\\27D5';
}
Preview: Left Outer Join

Left Outer Join JavaScript Code

1. Direct Symbol:
document.querySelector('.left-outer-join').textContent = '⟕';
2. Unicode Escape for ⟕:
document.querySelector('.left-outer-join').textContent = '\u27D5';
Preview: