Greater-than With Question Mark Above

Shortcodes

Copy useful codes for greater-than with question mark above symbol ⩼ to use in websites, apps, blogs, and docs.

Unicode
U+2A7C
HTML Code
⩼
HEX Code
⩼
CSS Code
\2A7C
JS/JSON
\u2A7C
Unix/C/PHP/JAVA
0x2A7C
URL-encode
%E2%A9%BC

Customize Greater-than With Question Mark Above

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

  

How to use Greater-than With Question Mark Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩼</span>
HTML Code:
<span>&#10876;</span>
HEX Code:
<span>&#x2A7C;</span>

Add with CSS

.greater-than-with-question-mark-above::before {
  content: '\\2A7C';
}

Set it in JavaScript

document.querySelector('.greater-than-with-question-mark-above').textContent = '⩼';
copied