And With Dot

Shortcodes

Copy useful codes for and with dot symbol ⟑ to use in websites, apps, blogs, and docs.

Unicode
U+27D1
HTML Code
⟑
HEX Code
⟑
CSS Code
\27D1
JS/JSON
\u27D1
Unix/C/PHP/JAVA
0x27D1
URL-encode
%E2%9F%91

Customize And With Dot

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

  

How to use And With Dot Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟑</span>
HTML Code:
<span>&#10193;</span>
HEX Code:
<span>&#x27D1;</span>

Add with CSS

.and-with-dot::before {
  content: '\\27D1';
}

Set it in JavaScript

document.querySelector('.and-with-dot').textContent = '⟑';
copied