HTML Entity for Hermitian Conjugate Matrix (⊹)

What You'll Learn
How to display the Hermitian Conjugate Matrix (⊹) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22B9 (HERMITIAN CONJUGATE) in the Mathematical Operators block (U+2200–U+22FF).
Render it with ⊹, ⊹, ⊹, or CSS escape \22B9. This glyph denotes the conjugate transpose (adjoint) of a matrix in linear algebra and quantum mechanics. Unlike many math operators, it has a named HTML entity (⊹) for readable markup.
⚡ Quick Reference — Hermitian Conjugate Matrix
U+22B9Mathematical Operators
⊹Hexadecimal reference
⊹Decimal reference
⊹Most readable option
Name Value
──────────── ──────────
Unicode U+22B9
Hex code ⊹
HTML code ⊹
Named entity ⊹
CSS code \22B9
Meaning Hermitian conjugate (conjugate transpose)
CSS note \22B9 or \022B9 in content propertyComplete HTML Example
This example demonstrates the Hermitian Conjugate Matrix symbol (⊹) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22B9";
}
</style>
</head>
<body>
<p>Hermitian Conjugate Matrix using Hexadecimal: ⊹</p>
<p>Hermitian Conjugate Matrix using Decimal: ⊹</p>
<p>Hermitian Conjugate Matrix using Named Entity: ⊹</p>
<p id="point">Hermitian Conjugate Matrix using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Hermitian Conjugate Matrix symbol (⊹) is supported in modern browsers with a math-capable font:
👀 Live Preview
See the Hermitian Conjugate Matrix symbol (⊹) in matrix and operator notation:
🧠 How It Works
Hexadecimal Code
⊹ uses the Unicode hexadecimal value 22B9 to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⊹ uses the decimal Unicode value 8889 to display the same character.
Named Entity
⊹ is the semantic named entity for ⊹—readable in source HTML and part of the HTML5 character set.
CSS Entity
\22B9 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ⊹. Unicode U+22B9 is in Mathematical Operators. Next: Homothetic.
Use Cases
The Hermitian Conjugate Matrix symbol (⊹) is commonly used in:
Denote the conjugate transpose (adjoint) of a matrix in equations and proofs.
Represent Hermitian operators and conjugate transpose in quantum notation.
Textbooks, course notes, and tutorials on matrix algebra.
Physics, engineering, and mathematics publications on the web.
APIs and libraries that expose conjugate-transpose operations.
Web-based equation editors and formula display with HTML entities.
💡 Best Practices
Do
- Use
⊹for readable source markup - Use math fonts (Cambria Math, STIX, Noto Sans Math) for reliable rendering
- Keep one method (named, hex, or decimal) consistent across the document
- Add visible text (e.g. “conjugate transpose”) for accessibility
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Put CSS escape
\22B9in HTML text nodes - Confuse ⊹ with unrelated operators (e.g.
⋗, U+22D7) - Assume every system font renders Mathematical Operators clearly
- Rely on the symbol alone for screen reader users
- Skip browser testing for math-heavy pages
Key Takeaways
Three HTML references plus CSS all render ⊹
⊹ ⊹ ⊹For CSS stylesheets, use the escape in the content property
\22B9Unicode U+22B9 — HERMITIAN CONJUGATE
Prefer ⊹ for readability in HTML source
Next: Homothetic
❓ Frequently Asked Questions
⊹ (hex), ⊹ (decimal), ⊹ (named), or \22B9 in CSS content. All produce ⊹.U+22B9 (HERMITIAN CONJUGATE). Mathematical Operators block (U+2200–U+22FF). Hex 22B9, decimal 8889. Named entity: ⊹.⊹ is the named HTML entity for ⊹. It is part of the HTML5 named character set and the most readable option in source markup.⊹ is used directly in HTML content. The CSS escape \22B9 (or \022B9) belongs in stylesheets, typically in the content property of ::before or ::after. Both render ⊹.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, relations, and more.
8 people found this page helpful
