HTML Entity for Drafting Point Right Arrow (➛)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+279B

What You'll Learn

How to display the Drafting Point Right Arrow (➛) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+279B (HEAVY ROUND-TIPPED RIGHTWARDS ARROW) in the Dingbats block (U+2700–U+27BF)—a heavy round-tipped rightwards arrow often used in technical drafting, diagrams, and UI design.

Render it with ➛, ➛, or CSS escape \279B. There is no named HTML entity for this symbol. Compare → (right arrow, U+2192, →) or other Dingbats arrows when you need a different style.

⚡ Quick Reference — Drafting Point Right Arrow

Unicode U+279B

Dingbats block

Hex Code ➛

Hexadecimal reference

HTML Code ➛

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+279B
Hex code       ➛
HTML code      ➛
Named entity   (none)
CSS code       \279B
Related        U+2192 = Right arrow (→); U+2794 = Heavy wide-headed right
1

Complete HTML Example

This example demonstrates the Drafting Point Right Arrow (➛) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\279B";
  }
 </style>
</head>
<body>
<p>Drafting Point Right Arrow using Hexadecimal: &#x279B;</p>
<p>Drafting Point Right Arrow using HTML Code: &#10139;</p>
<p id="point">Drafting Point Right Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+279B is supported in modern browsers when rendered with a font that includes Dingbats:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Drafting Point Right Arrow (➛) in diagrams and UI contexts:

Large glyph
Flowchart Step A ➛ Step B
vs simple right ➛ drafting   → simple
Next Continue ➛
Numeric refs &#x279B; &#10139;

🧠 How It Works

1

Hexadecimal Code

&#x279B; uses the Unicode hexadecimal value 279B to display the Drafting Point Right Arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10139; uses the decimal Unicode value 10139 to display the same character.

HTML markup
3

CSS Entity

\279B is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+279B. No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Drafting Point Right Arrow (➛) is commonly used in:

📊 Technical diagrams

Drafting-style connectors and rightward flow in engineering drawings.

💻 UI design

Next, continue, or forward indicators in interfaces and wizards.

📈 Flowcharts

Show progression to the right between steps or decision nodes.

📜 Directional cues

Highlight movement or attention to content on the right.

📖 Documentation

Technical docs, specs, and tutorials that need a clear right arrow.

💻 Web design

Symbol pickers and design systems with drafting-style arrows.

💡 Best Practices

Do

  • Use &#x279B; or &#10139; consistently in markup
  • Add aria-label when the symbol means next, continue, or move right
  • Pair ➛ with a visible label or legend in diagrams
  • Use \279B in CSS ::before / ::after for drafting right-arrow icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+279B
  • Confuse ➛ (heavy round-tipped right) with → (simple right arrow)
  • Put CSS escape \279B in HTML text nodes
  • Rely on the symbol alone in accessibility-critical UIs
  • Assume decorative fonts include all Dingbats glyphs

Key Takeaways

1

Two HTML numeric references render ➛

&#x279B; &#10139;
2

For CSS stylesheets, use the escape in the content property

\279B
3

Unicode U+279B — HEAVY ROUND-TIPPED RIGHTWARDS ARROW

4

Dingbats block (U+2700–U+27BF)

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x279B; (hex), &#10139; (decimal), or \279B in CSS content. There is no named entity. All produce ➛.
U+279B (HEAVY ROUND-TIPPED RIGHTWARDS ARROW). Dingbats block (U+2700–U+27BF). Hex 279B, decimal 10139. A heavy round-tipped rightwards arrow, often used in drafting and technical diagrams.
In technical diagrams, UI design, flowcharts, directional indicators, documentation, and any content where a clear right-pointing drafting-style arrow is needed.
HTML references (&#10139; or &#x279B;) go in markup. The CSS escape \279B is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Many Dingbats block characters including U+279B have no named entity—use &#x279B; or &#10139; in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — Dingbats, symbols, math operators, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful