Slanted Equal To Or Greater-than With Dot Inside

Shortcodes

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

Unicode
U+2A98
HTML Code
⪘
HEX Code
⪘
CSS Code
\2A98
JS/JSON
\u2A98
Unix/C/PHP/JAVA
0x2A98
URL-encode
%E2%AA%98

Customize Slanted Equal To Or Greater-than With Dot Inside

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

  

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

Insert in HTML

1. Direct symbol:
<span>⪘</span>
HTML Code:
<span>&#10904;</span>
HEX Code:
<span>&#x2A98;</span>

Add with CSS

.slanted-equal-to-or-greater-than-with-dot-inside::before {
  content: '\\2A98';
}

Set it in JavaScript

document.querySelector('.slanted-equal-to-or-greater-than-with-dot-inside').textContent = '⪘';
copied