Upper Left Corner With Dot

Shortcodes

Copy useful codes for upper left corner with dot symbol ⟔ to use in websites, apps, blogs, and docs.

Unicode
U+27D4
HTML Code
⟔
HEX Code
⟔
CSS Code
\27D4
JS/JSON
\u27D4
Unix/C/PHP/JAVA
0x27D4
URL-encode
%E2%9F%94

Customize Upper Left Corner With Dot

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

  

How to use Upper Left Corner With Dot Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟔</span>
HTML Code:
<span>&#10196;</span>
HEX Code:
<span>&#x27D4;</span>

Add with CSS

.upper-left-corner-with-dot::before {
  content: '\\27D4';
}

Set it in JavaScript

document.querySelector('.upper-left-corner-with-dot').textContent = '⟔';
copied