HTML Entity for Pitchfork (⋔)

What You'll Learn
How to display the Pitchfork symbol (⋔) in HTML using various entity methods. The pitchfork (fork) is a mathematical relation operator used in set theory, formal logic, and academic notation—not to be confused with everyday tool imagery.
This character is part of the Mathematical Operators Unicode block and can be rendered with a hexadecimal reference, a decimal reference, the named entity ⋔, or a CSS escape in the content property.
⚡ Quick Reference — Pitchfork Entity
U+22D4Mathematical Operators block
⋔Hexadecimal reference
⋔Decimal reference
⋔Most readable option
Name Value
──────────── ──────────
Unicode U+22D4
Hex code ⋔
HTML code ⋔
Named entity ⋔
CSS code \22D4
Meaning Pitchfork (mathematical relation)
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing ⋔ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\22D4";
}
</style>
</head>
<body>
<p>Pitchfork (hex): ⋔</p>
<p>Pitchfork (decimal): ⋔</p>
<p>Pitchfork (named): ⋔</p>
<p id="point">Pitchfork (CSS): </p>
</body>
</html>🌐 Browser Support
The Pitchfork entity is universally supported in all modern browsers:
👀 Live Preview
See the Pitchfork symbol rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⋔ uses the Unicode hexadecimal value 22D4 to display the pitchfork symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋔ uses the decimal Unicode value 8916 to display the same character. This is one of the most commonly used methods.
CSS Entity
\22D4 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Named Entity
⋔ is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.
Same visual result
All four methods produce the pitchfork glyph: ⋔. Unicode U+22D4 sits in the Mathematical Operators block (U+2200–U+22FF).
Use Cases
The Pitchfork symbol (⋔) commonly appears in the following scenarios:
Formal relations and neighborhood-style notation in mathematical texts.
Research articles, theses, and lecture notes requiring precise operator symbols.
Logic and proof documentation where relation operators must render correctly.
Online math references, wikis, and educational content on operators.
Character tables, entity pickers, and Mathematical Operators guides.
Blog posts and tutorials explaining mathematical relations and notation.
Pair ⋔ with plain-language explanations on first use in educational content.
💡 Best Practices
Do
- Use
⋔for readable source markup - Pick one style (hex / decimal / named) per project
- Add explanatory text when introducing ⋔ in educational content
- Test the glyph across browsers and math-friendly fonts
- Use MathML or LaTeX for complex multi-line formulas when appropriate
Don’t
- Confuse ⋔ (pitchfork relation) with agricultural tool imagery
- Mix entity styles randomly in one file
- Use CSS escape
\22D4inside HTML text nodes - Use HTML entities in JS (use
\u22D4instead) - Assume all fonts render ⋔ with identical spacing in formulas
Key Takeaways
Three HTML references all render ⋔
⋔ ⋔ ⋔For CSS stylesheets, use the escape in the content property
\22D4Unicode U+22D4 belongs to the Mathematical Operators block (U+2200–U+22FF)
Prefer ⋔ for readability—it’s the most self-descriptive named entity
Previous: Pinwheel Star (✯) Next: Planck Constant (ℎ)
❓ Frequently Asked Questions
⋔ (hex), ⋔ (decimal), ⋔ (named), or \22D4 in CSS content. All produce ⋔.U+22D4 (hex 22D4, decimal 8916). It denotes the pitchfork relation operator in the Mathematical Operators block.⋔ or ⋔) go directly in markup. The CSS escape \22D4 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.⋔, ⋔, and ⋔ are equivalent in modern browsers and all render ⋔.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
