Larger Than

Shortcodes

Copy useful codes for larger than symbol ⪫ to use in websites, apps, blogs, and docs.

Unicode
U+2AAB
HTML Code
⪫
HEX Code
⪫
CSS Code
\2AAB
JS/JSON
\u2AAB
Unix/C/PHP/JAVA
0x2AAB
URL-encode
%E2%AA%AB

Customize Larger Than

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

  

How to use Larger Than Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⪫</span>
HTML Code:
<span>&#10923;</span>
HEX Code:
<span>&#x2AAB;</span>

Add with CSS

.larger-than::before {
  content: '\\2AAB';
}

Set it in JavaScript

document.querySelector('.larger-than').textContent = '⪫';
copied