HTML Entity for Circled Heavy White Right Arrow (➲)

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

What You'll Learn

How to display the Circled Heavy White Right Arrow (➲) in HTML using numeric references and CSS escapes. This character is U+27B2 (CIRCLED HEAVY WHITE RIGHTWARDS ARROW) in the Dingbats block (U+2700–U+27BF)—a heavy white right-pointing arrow inside a circle used in navigation and UI design.

There is no named HTML entity for U+27B2. Use ➲, ➲, or \27B2 in CSS content. Do not confuse ➲ with Black Rightwards Arrow U+27A1 (➡) or plain Rightwards Arrow U+2192 (→).

⚡ Quick Reference — Circled Heavy White Right Arrow

Unicode U+27B2

Dingbats block

Hex Code ➲

Hexadecimal reference

HTML Code ➲

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27B2
Hex code       ➲
HTML code      ➲
Named entity   —
CSS code       \27B2
1

Complete HTML Example

This example shows U+27B2 using hexadecimal and decimal references plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\27B2";
  }
 </style>
</head>
<body>
<p>Circled Heavy White Right Arrow using Hexa Decimal: &#x27B2;</p>
<p>Circled Heavy White Right Arrow using HTML Code: &#10162;</p>
<p id="point">Circled Heavy White Right Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Circled Heavy White Right Arrow is supported in all modern browsers:

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

👀 Live Preview

See the Circled Heavy White Right Arrow in UI and navigation contexts:

Next button Continue ➲
Pagination Page 1 of 5 ➲
Large glyph
vs related arrows Circled: ➲ (U+27B2)   Black: ➡ (U+27A1)   Plain: → (U+2192)
Monospace refs &#x27B2; &#10162; \27B2

🧠 How It Works

1

Hexadecimal Code

&#x27B2; uses the Unicode hexadecimal value 27B2 to display the Circled Heavy White Right Arrow.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\27B2 is used in CSS stylesheets, particularly in the content property of pseudo-elements—ideal for next buttons and link indicators.

CSS stylesheet
=

Same visual result

All three methods produce the Circled Heavy White Right Arrow glyph: . Unicode U+27B2 sits in the Dingbats block (U+2700–U+27BF). No named HTML entity exists.

Use Cases

The Circled Heavy White Right Arrow (➲) commonly appears in:

➡️ Navigation & UI

Next, forward, or “go right” buttons in apps and carousels.

📱 Mobile & web apps

Directional indicators, swipe hints, and step-by-step flow cues.

📊 Flowcharts

Process flow, decision trees, and diagram connectors.

🎨 Graphic design

Posters, infographics, and visual content needing a circled arrow.

📄 Pagination

Next page, next slide, or continue indicators in galleries.

🔗 Call-to-action

Visual cue for “learn more,” “continue,” or external links.

♿ Accessibility

Pair with text or aria-label="Next" so screen readers convey the action.

💡 Best Practices

Do

  • Use &#x27B2; or &#10162; consistently in HTML
  • Add aria-label="Next" or visible text on navigation controls
  • Use CSS \27B2 in ::after for styled next links
  • Choose fonts that support Dingbats (U+2700–U+27BF)
  • Prefer semantic buttons/links over decorative-only arrows

Don’t

  • Confuse U+27B2 (➲) with U+27A1 Black Rightwards Arrow (➡)
  • Put CSS escape \27B2 inside HTML text nodes
  • Rely on the glyph alone without accessible action labels
  • Assume a named entity exists—U+27B2 has none
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x27B2; &#10162;
2

For CSS stylesheets, use the escape in the content property

\27B2
3

U+27B2 in the Dingbats block

4

Ideal for next/forward navigation UI

5

Three methods, one glyph — all widely supported

❓ Frequently Asked Questions

Use &#x27B2; (hex), &#10162; (decimal), or \27B2 in CSS content. There is no named HTML entity for U+27B2.
U+27B2 (CIRCLED HEAVY WHITE RIGHTWARDS ARROW). Dingbats block (U+2700–U+27BF). Hex 27B2, decimal 10162.
For directional indicators, navigation buttons, next/forward actions, user interfaces, flowcharts, pagination, and any content needing a circled right-pointing arrow.
Numeric references (&#10162; or &#x27B2;) go directly in HTML markup. The CSS escape \27B2 is used in stylesheets, typically in the content property of pseudo-elements.
No. U+27B2 has no named HTML entity. Black Rightwards Arrow is a different character: U+27A1 (➡).

Explore More HTML Entities!

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