Less-than With Question Mark Above

Shortcodes

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

Unicode
U+2A7B
HTML Code
⩻
HEX Code
⩻
CSS Code
\2A7B
JS/JSON
\u2A7B
Unix/C/PHP/JAVA
0x2A7B
URL-encode
%E2%A9%BB

Customize Less-than With Question Mark Above

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩻</span>
HTML Code:
<span>&#10875;</span>
HEX Code:
<span>&#x2A7B;</span>

Add with CSS

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

Set it in JavaScript

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