N-ary Times Operator

Shortcodes

Copy useful codes for n-ary times operator symbol ⨉ to use in websites, apps, blogs, and docs.

Unicode
U+2A09
HTML Code
⨉
HEX Code
⨉
CSS Code
\2A09
JS/JSON
\u2A09
Unix/C/PHP/JAVA
0x2A09
URL-encode
%E2%A8%89

Customize N-ary Times Operator

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

  

How to use N-ary Times Operator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨉</span>
HTML Code:
<span>&#10761;</span>
HEX Code:
<span>&#x2A09;</span>

Add with CSS

.n-ary-times-operator::before {
  content: '\\2A09';
}

Set it in JavaScript

document.querySelector('.n-ary-times-operator').textContent = '⨉';
copied