HTML Entity for Earth (♁)

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

What You'll Learn

How to display the Earth symbol (♁) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2641 (EARTH) in the Miscellaneous Symbols block (U+2600–U+26FF)—the Earth or globe symbol used in astrology for the Earth element, astronomy, geography, and environmental content.

Render it with ♁, ♁, or CSS escape \2641. There is no named HTML entity for this symbol. Compare ♂ (Mars, U+2642) or ♃ (Jupiter, U+2643) for other planetary symbols.

⚡ Quick Reference — Earth

Unicode U+2641

Miscellaneous Symbols block

Hex Code ♁

Hexadecimal reference

HTML Code ♁

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2641
Hex code       ♁
HTML code      ♁
Named entity   (none)
CSS code       \2641
Related        U+2642 = Mars (♂); U+2643 = Jupiter (♃)
1

Complete HTML Example

This example demonstrates the Earth (♁) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2641";
  }
 </style>
</head>
<body>
<p>Earth using Hexadecimal: &#x2641;</p>
<p>Earth using HTML Code: &#9793;</p>
<p id="point">Earth using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2641 is supported in modern browsers when rendered with a font that includes Miscellaneous Symbols:

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

👀 Live Preview

See the Earth symbol (♁) in astrology, science, and environmental contexts:

Large glyph
Astrology Earth ♁   Mars ♂   Jupiter ♃
Environmental ♁ Global climate & sustainability
Travel ♁ Worldwide destinations
Numeric refs &#x2641; &#9793;

🧠 How It Works

1

Hexadecimal Code

&#x2641; uses the Unicode hexadecimal value 2641 to display the Earth. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2641 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+2641 in the Miscellaneous Symbols block (U+2600–U+26FF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Earth symbol (♁) is commonly used in:

♈ Astrology

Represent the Earth element in zodiac and element charts.

🌍 Geography

Indicate Earth, globe, or environmental themes in articles and apps.

🔭 Astronomy

Educational or reference content about planets and Earth.

✈ Travel

Global or location indicators in travel and map apps.

📚 Education

Textbooks and reference sites for symbols and notation.

💻 Web design

Earth or globe cues in headers, footers, and branding.

💡 Best Practices

Do

  • Use &#x2641; or &#9793; consistently in markup
  • Use fonts that support Miscellaneous Symbols (system UI, Symbola)
  • Add aria-label with clear meaning (e.g. “Earth symbol” or “globe”)
  • Pair ♁ with visible text in astrology or environmental UI
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+2641
  • Confuse ♁ (Earth) with 🌍 (globe emoji U+1F30D)
  • Put CSS escape \2641 in HTML text nodes
  • Rely on the symbol alone in accessibility-critical interfaces
  • Assume decorative fonts include all Miscellaneous Symbols

Key Takeaways

1

Two HTML numeric references render ♁

&#x2641; &#9793;
2

For CSS stylesheets, use the escape in the content property

\2641
3

Unicode U+2641 — EARTH

4

Miscellaneous Symbols block (U+2600–U+26FF)

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x2641; (hex), &#9793; (decimal), or \2641 in CSS content. There is no named entity. All produce ♁.
U+2641 (EARTH). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2641, decimal 9793. The Earth or globe symbol, used in astrology and astronomy.
In astrology (Earth element), astronomy, geography and environmental content, travel and location-related sites, and any content where the Earth or globe symbol is needed.
HTML references (&#9793; or &#x2641;) go in markup. The CSS escape \2641 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 Miscellaneous Symbols including U+2641 have no named entity—use &#x2641; or &#9793; in HTML.

Explore More HTML Entities!

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