Greater-than Or Slanted Equal To With Dot Above Left

Shortcodes

Copy useful codes for greater-than or slanted equal to with dot above left symbol ⪄ to use in websites, apps, blogs, and docs.

Unicode
U+2A84
HTML Code
⪄
HEX Code
⪄
CSS Code
\2A84
JS/JSON
\u2A84
Unix/C/PHP/JAVA
0x2A84
URL-encode
%E2%AA%84

Customize Greater-than Or Slanted Equal To With Dot Above Left

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

  

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

Insert in HTML

1. Direct symbol:
<span>⪄</span>
HTML Code:
<span>&#10884;</span>
HEX Code:
<span>&#x2A84;</span>

Add with CSS

.greater-than-or-slanted-equal-to-with-dot-above-left::before {
  content: '\\2A84';
}

Set it in JavaScript

document.querySelector('.greater-than-or-slanted-equal-to-with-dot-above-left').textContent = '⪄';
copied