Hermitian Conjugate Matrix

Shortcodes

Copy useful codes for hermitian conjugate matrix symbol ⊹ to use in websites, apps, blogs, and docs.

Unicode
U+22B9
HTML Code
⊹
HEX Code
⊹
CSS Code
\22B9
JS/JSON
\u22B9
Unix/C/PHP/JAVA
0x22B9
URL-encode
%E2%8A%B9

Customize Hermitian Conjugate Matrix

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

  

How to use Hermitian Conjugate Matrix Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊹</span>
HTML Code:
<span>&#8889;</span>
HEX Code:
<span>&#x22B9;</span>

Add with CSS

.hermitian-conjugate-matrix::before {
  content: '\\22B9';
}

Set it in JavaScript

document.querySelector('.hermitian-conjugate-matrix').textContent = '⊹';
copied