Triple Solidus Binary Relation

Shortcodes

Copy useful codes for triple solidus binary relation symbol ⫻ to use in websites, apps, blogs, and docs.

Unicode
U+2AFB
HTML Code
⫻
HEX Code
⫻
CSS Code
\2AFB
JS/JSON
\u2AFB
Unix/C/PHP/JAVA
0x2AFB
URL-encode
%E2%AB%BB

Customize Triple Solidus Binary Relation

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

  

How to use Triple Solidus Binary Relation Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫻</span>
HTML Code:
<span>&#11003;</span>
HEX Code:
<span>&#x2AFB;</span>

Add with CSS

.triple-solidus-binary-relation::before {
  content: '\\2AFB';
}

Set it in JavaScript

document.querySelector('.triple-solidus-binary-relation').textContent = '⫻';
copied