HTML Entity for Heavy North East Arrow (➚)

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

What You'll Learn

How to display the Heavy North East Arrow (➚) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+279A (HEAVY NORTH EAST ARROW) in the Dingbats block (U+2700–U+27BF). It is a heavy north-east-pointing arrow—ideal for navigation, expand or open-in-new-window cues, maps, flow diagrams, and directional UI where a distinct diagonal forward-up arrow is needed beyond or Unicode .

Render it with ➚, ➚, or CSS escape \279A. There is no named HTML entity. Do not confuse ➚ with U+27AD (➭, shaded lower-right arrow) or U+2197 (↗, standard north-east arrow); each code point has a different glyph.

⚡ Quick Reference — North East Arrow

Unicode U+279A

Dingbats block

Hex Code ➚

Hexadecimal reference

HTML Code ➚

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+279A
Hex code       ➚
HTML code      ➚
Named entity   (none)
CSS code       \279A
Meaning        Heavy north-east arrow
Related        U+2197 = NE arrow (↗)
               U+27AD = shaded right (➭)
               U+27A8 = concave right (➨)
1

Complete HTML Example

This example demonstrates the Heavy North East Arrow (➚) using hexadecimal code, decimal HTML code, and CSS content on external links and an expand control:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\279A";
  }
 </style>
</head>
<body>
<p>North East Arrow using Hexadecimal: &#x279A;</p>
<p>North East Arrow using HTML Code: &#10138;</p>
<p id="point">North East Arrow using CSS Entity</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy North East Arrow (➚) is widely supported in modern browsers when the font includes Dingbats arrow glyphs:

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

👀 Live Preview

Heavy North East Arrow (➚) in context, compared with other directional arrows:

External link Documentation ➚
Expand Show more ➚
Large glyph
Comparison ➚   ↗   ➭
Numeric refs &#x279A; &#10138; \279A

🧠 How It Works

1

Hexadecimal Code

&#x279A; uses the Unicode hexadecimal value 279A to display the north-east arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\279A is used in CSS stylesheets, particularly in content on ::after for external links, expand buttons, and direction cues.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+279A is in the Dingbats block. Next: Open Centre Cross (✜).

Use Cases

The Heavy North East Arrow (➚) is commonly used in:

➚ Navigation

North-east direction, expand, or open indicators in menus and links.

🔗 External

Show links that open in a new tab or point outward.

🗺 Maps

Direction indicators, compass-style UI, and map legends.

📊 Diagrams

Flow direction and relationship arrows in flowcharts.

🔨 CSS content

content: "\279A" on ::after without extra HTML.

📱 UI controls

Expand buttons, more indicators, and directional app controls.

💡 Best Practices

Do

  • Pair ➚ with aria-label="Open in new window" on external links
  • Use rel="noopener" with target="_blank" for security
  • Apply content: " \279A" via a.external::after
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Combine visible link text with the arrow for clarity

Don’t

  • Use ➚ alone on links without accessible names
  • Confuse U+279A (➚) with U+2197 (↗) or U+27AD (➭)
  • Expect a named HTML entity for U+279A
  • Use CSS \279A in HTML text nodes
  • Rely on the arrow alone when direction or action must be explicit

Key Takeaways

1

Two HTML numeric references plus CSS insert U+279A

&#x279A; &#10138;
2

For CSS, use \279A in the content property (often ::after)

3

Unicode U+279A — heavy north-east arrow (➚)

4

Distinct from standard NE U+2197 (↗) and shaded U+27AD (➭)

❓ Frequently Asked Questions

Use &#x279A; (hex), &#10138; (decimal), or \279A in CSS content. There is no named entity. All three methods render the arrow (➚) correctly.
U+279A (HEAVY NORTH EAST ARROW). Dingbats block. Hex 279A, decimal 10138. The symbol (➚) is a heavy north-east-pointing arrow, widely used for direction and navigation.
For navigation and direction indicators, expand or external-link cues, maps and wayfinding, flowcharts and diagrams, and any UI that needs a distinct north-east directional arrow.
HTML references (&#10138; or &#x279A;) go in markup. The CSS escape \279A is used in stylesheets, typically on ::after for links and buttons. Both produce ➚.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+279A uses numeric hex (&#x279A;) or decimal (&#10138;) codes, which is standard for Dingbats arrow symbols.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, math, 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