Multiplication Sign With Underbar

Shortcodes

Copy useful codes for multiplication sign with underbar symbol ⨱ to use in websites, apps, blogs, and docs.

Unicode
U+2A31
HTML Code
⨱
HEX Code
⨱
CSS Code
\2A31
JS/JSON
\u2A31
Unix/C/PHP/JAVA
0x2A31
URL-encode
%E2%A8%B1

Customize Multiplication Sign With Underbar

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

  

How to use Multiplication Sign With Underbar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨱</span>
HTML Code:
<span>&#10801;</span>
HEX Code:
<span>&#x2A31;</span>

Add with CSS

.multiplication-sign-with-underbar::before {
  content: '\\2A31';
}

Set it in JavaScript

document.querySelector('.multiplication-sign-with-underbar').textContent = '⨱';
copied