HTML Entity for Heavy Greek Cross (✚)

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

What You'll Learn

How to display the Heavy Greek Cross (✚) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+271A (HEAVY GREEK CROSS) in the Dingbats block (U+2700–U+27BF). It is a bold, equal-armed cross (Greek cross shape)—ideal for add/plus indicators in UI, religious or ceremonial content, decorative design, and any context where a clear cross or plus symbol is needed beyond ASCII + (U+002B).

Render it with ✚, ✚, or CSS escape \271A. There is no named HTML entity. Do not confuse ✚ with U+271D (✝, Latin cross) or U+2716 (✖, heavy multiplication sign); each Dingbats cross has a distinct glyph and meaning.

⚡ Quick Reference — Greek Cross

Unicode U+271A

Dingbats block

Hex Code ✚

Hexadecimal reference

HTML Code ✚

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+271A
Hex code       ✚
HTML code      ✚
Named entity   (none)
CSS code       \271A
Meaning        Heavy Greek cross
Related        U+002B = plus (+)
               U+271D = Latin cross (✝)
               U+2716 = heavy multiplication (✖)
1

Complete HTML Example

This example demonstrates the Heavy Greek Cross (✚) using hexadecimal code, decimal HTML code, and a CSS content escape on an add button and decorative divider:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\271A";
  }
 </style>
</head>
<body>
<p>Greek Cross using Hexadecimal: &#x271A;</p>
<p>Greek Cross using HTML Code: &#10010;</p>
<p id="point">Greek Cross using CSS Entity</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Greek Cross (✚) is widely supported in modern browsers when the font includes Dingbats cross glyphs:

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

👀 Live Preview

Heavy Greek Cross (✚) in context, compared with other plus and cross symbols:

Add button ✚ Add item
Divider ✚ ✚ ✚
Large glyph
Comparison ✚   +   ✝
Numeric refs &#x271A; &#10010; \271A

🧠 How It Works

1

Hexadecimal Code

&#x271A; uses the Unicode hexadecimal value 271A to display the Greek cross. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\271A is used in CSS stylesheets, particularly in content on ::before for add buttons, expand controls, and decorative crosses.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+271A is in the Dingbats block. Next: Heart Exclamation Ornament (❣).

Use Cases

The Heavy Greek Cross (✚) is commonly used in:

✚ Add / Plus

Add buttons, expand controls, or plus actions in forms, lists, and UI.

⛪ Faith

Church or faith-related sites, memorials, and ceremonial typography.

🎨 Typography

Headers, dividers, or accent characters for a bold cross or plus style.

📋 Forms

Add-item or add-row controls and optional plus cues in interfaces.

🔨 CSS content

content: "\271A" on ::before without extra HTML markup.

🌐 Accessibility

Pair with text or aria-label (e.g. “Add”, “Expand”) for screen readers.

💡 Best Practices

Do

  • Pair ✚ on buttons with aria-label="Add item" or visible text
  • Use content: "\271A " via ::before for icon-only add controls
  • Declare UTF-8 with <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Test glyph rendering in your font stack
  • Use semantic <button> elements for interactive add actions

Don’t

  • Use ✚ alone on icon buttons without accessible names
  • Confuse U+271A (✚) with U+271D (✝) or U+2716 (✖)
  • Expect a named HTML entity for U+271A
  • Use CSS \271A in HTML text nodes
  • Imply medical emergency meaning without proper context and labeling

Key Takeaways

1

Two HTML numeric references plus CSS insert U+271A

&#x271A; &#10010;
2

For CSS, use \271A in the content property

3

Unicode U+271A — heavy Greek cross (✚)

4

Distinct from ASCII + (U+002B) and Latin cross U+271D (✝)

❓ Frequently Asked Questions

Use &#x271A; (hex), &#10010; (decimal), or \271A in CSS content. There is no named entity. All three methods render the symbol (✚) correctly.
U+271A (HEAVY GREEK CROSS). Dingbats block. Hex 271A, decimal 10010. The symbol (✚) is a bold, equal-armed cross, often used for add/plus indicators, religious content, and decoration.
For add or plus indicators in UI, religious or ceremonial content, decorative typography, and any design that needs a clear cross or plus symbol beyond the standard plus sign.
HTML references (&#10010; or &#x271A;) go in markup. The CSS escape \271A is used in stylesheets, typically on ::before or ::after. Both produce ✚.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+271A uses numeric hex (&#x271A;) or decimal (&#10010;) codes, which is standard for Dingbats cross 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