Hermitian Conjugate Matrix

Shortcodes

Copy and paste codes for Hermitian Conjugate Matrix symbol ⊹ to use in your websites, apps, blogs, and more.

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

Customize Hermitian Conjugate Matrix Symbol

Customize ⊹ symbol as you like and download Hermitian Conjugate Matrix as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Hermitian Conjugate Matrix symbol in HTML, CSS, and JS?

Insert ⊹ Hermitian Conjugate Matrix using HTML

1. Copy-paste Hermitian Conjugate Matrix directly:
<span>⊹</span>
2. HTML Decimal Code:
<span>&#8889;</span>
3. Hexadecimal Code:
<span>&#x22B9;</span>
Preview:

Add Hermitian Conjugate Matrix symbol with CSS

.hermitian-conjugate-matrix::before {
    content: '\\22B9';
}
Preview: Hermitian Conjugate Matrix

Hermitian Conjugate Matrix JavaScript Code

1. Direct Symbol:
document.querySelector('.hermitian-conjugate-matrix').textContent = '⊹';
2. Unicode Escape for ⊹:
document.querySelector('.hermitian-conjugate-matrix').textContent = '\u22B9';
Preview: