Less-than Or Slanted Equal To With Dot Above Right

Shortcodes

Copy useful codes for less-than or slanted equal to with dot above right symbol ⪃ to use in websites, apps, blogs, and docs.

Unicode
U+2A83
HTML Code
⪃
HEX Code
⪃
CSS Code
\2A83
JS/JSON
\u2A83
Unix/C/PHP/JAVA
0x2A83
URL-encode
%E2%AA%83

Customize Less-than Or Slanted Equal To With Dot Above Right

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

  

How to use Less-than Or Slanted Equal To With Dot Above Right Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪃</span>
HTML Code:
<span>&#10883;</span>
HEX Code:
<span>&#x2A83;</span>

Add with CSS

.less-than-or-slanted-equal-to-with-dot-above-right::before {
  content: '\\2A83';
}

Set it in JavaScript

document.querySelector('.less-than-or-slanted-equal-to-with-dot-above-right').textContent = '⪃';
copied