Much Greater-than

Shortcodes

Copy useful codes for much greater-than symbol ≫ to use in websites, apps, blogs, and docs.

Unicode
U+226B
HTML Code
≫
HEX Code
≫
CSS Code
\226B
JS/JSON
\u226B
Unix/C/PHP/JAVA
0x226B
URL-encode
%E2%89%AB

Customize Much Greater-than

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

  

How to use Much Greater-than Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≫</span>
HTML Code:
<span>&#8811;</span>
HEX Code:
<span>&#x226B;</span>

Add with CSS

.much-greater-than::before {
  content: '\\226B';
}

Set it in JavaScript

document.querySelector('.much-greater-than').textContent = '≫';
copied