Small Vee With Underbar

Shortcodes

Copy useful codes for small vee with underbar symbol ⩡ to use in websites, apps, blogs, and docs.

Unicode
U+2A61
HTML Code
⩡
HEX Code
⩡
CSS Code
\2A61
JS/JSON
\u2A61
Unix/C/PHP/JAVA
0x2A61
URL-encode
%E2%A9%A1

Customize Small Vee With Underbar

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

  

How to use Small Vee With Underbar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩡</span>
HTML Code:
<span>&#10849;</span>
HEX Code:
<span>&#x2A61;</span>

Add with CSS

.small-vee-with-underbar::before {
  content: '\\2A61';
}

Set it in JavaScript

document.querySelector('.small-vee-with-underbar').textContent = '⩡';
copied