Left Outer Join

Shortcodes

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

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

Customize Left Outer Join

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟕</span>
HTML Code:
<span>&#10197;</span>
HEX Code:
<span>&#x27D5;</span>

Add with CSS

.left-outer-join::before {
  content: '\\27D5';
}

Set it in JavaScript

document.querySelector('.left-outer-join').textContent = '⟕';
copied