Much Greater-than

Shortcodes

Copy and paste codes for Much Greater-than symbol ≫ to use in your websites, apps, blogs, and more.

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

Customize Much Greater-than Symbol

Customize ≫ symbol as you like and download Much Greater-than as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Much Greater-than symbol in HTML, CSS, and JS?

Insert ≫ Much Greater-than using HTML

1. Copy-paste Much Greater-than directly:
<span>≫</span>
2. HTML Decimal Code:
<span>&#8811;</span>
3. Hexadecimal Code:
<span>&#x226B;</span>
Preview:

Add Much Greater-than symbol with CSS

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

Much Greater-than JavaScript Code

1. Direct Symbol:
document.querySelector('.much-greater-than').textContent = '≫';
2. Unicode Escape for ≫:
document.querySelector('.much-greater-than').textContent = '\u226B';
Preview: