HTML Entity for Property Line (⅊)

What You'll Learn
How to display the property line symbol (⅊) in HTML using hexadecimal, decimal, and CSS escape methods. This letterlike symbol is used to mark property boundaries in legal, surveying, and technical documentation.
It is part of the Letterlike Symbols Unicode block and can be rendered with ⅊, ⅊, or CSS \214A. There is no named HTML entity for this character.
⚡ Quick Reference — Property Line
U+214ALetterlike Symbols block
⅊Hexadecimal reference
⅊Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+214A
Hex code ⅊
HTML code ⅊
Named entity (none)
CSS code \214A
Meaning Property line
Related U+211E = Prescription take (℞)
U+210E = Planck constant (ℎ)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing ⅊ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\214A";
}
</style>
</head>
<body>
<p>Boundary (hex): Lot A ⅊ Lot B</p>
<p>Boundary (decimal): Lot A ⅊ Lot B</p>
<p>Boundary (CSS): Lot A <span id="point"></span> Lot B</p>
</body>
</html>🌐 Browser Support
The property line symbol is widely supported when fonts include Letterlike Symbols (U+2100–U+214F):
👀 Live Preview
See ⅊ rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⅊ uses the Unicode hexadecimal value 214A to display the property line symbol.
Decimal HTML Code
⅊ uses the decimal Unicode value 8522 to display the same character.
CSS Entity
\214A is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ⅊. Unicode U+214A in the Letterlike Symbols block (U+2100–U+214F). No named HTML entity exists.
Use Cases
The property line symbol (⅊) commonly appears in:
Deeds, titles, and property boundary descriptions.
Land surveys, plat maps, and cadastral notation.
Site plans, boundary diagrams, and engineering schematics.
Property listings and lot division references online.
Character pickers and Letterlike Symbols documentation.
Courses on land law, surveying, and Unicode symbols.
Pair ⅊ with “property line” in plain language on first use.
💡 Best Practices
Do
- Use
⅊or⅊for the dedicated glyph - Add accessible text alongside the symbol for screen readers
- Pick one style (hex or decimal) per project
- Test rendering with fonts that include Letterlike Symbols
- Use SVG or images for complex survey diagrams when needed
Don’t
- Assume a named entity exists—there is none for ⅊
- Substitute a plain letter P or line drawing when ⅊ is required
- Use CSS escape
\214Ainside HTML text nodes - Use HTML entities in JS (use
\u214Ainstead) - Rely on the symbol alone without context in legal documents
Key Takeaways
Two HTML numeric references render ⅊
⅊ ⅊For CSS stylesheets, use the escape in the content property
\214AUnicode U+214A belongs to the Letterlike Symbols block (U+2100–U+214F)
No named HTML entity—use numeric codes or CSS escape only
Previous: Prime (′) Next: Proportional (∷)
❓ Frequently Asked Questions
⅊ (hex), ⅊ (decimal), or \214A in CSS content. There is no named HTML entity for this symbol.U+214A (PROPERTY LINE). Letterlike Symbols block. Hex 214A, decimal 8522.⅊ or ⅊, or the CSS escape \214A.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
