HTML Entity for Earth (♁)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2641

What Is Earth?

Earth (♁) is the Unicode character at U+2641 in Miscellaneous Symbols. Official name: EARTH. It is the traditional planetary symbol for Earth — used in astronomy and astrology.

Remember
Character     ♁
Unicode       U+2641
Hex entity    ♁
Decimal       ♁
CSS escape    \2641
Named entity  (none)
Not the same  ♀ (♀) · ♂ (♂) · ⊕ (⊕)

Prefer ♁ or ♁ in HTML (no named form). You can also type ♁ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity♁HTML markup (preferred)
Decimal entity♁HTML markup
Direct character♁HTML text (UTF-8)
CSS escape\2641Stylesheet content
Venus / Mars (related)♀ / ♂Named planetary neighbors

When to Use Which

SituationUse
Earth planetary symbol♁ or type ♁
Venus / Mars♀ (♀) · ♂ (♂)
Other planetsMercury · Jupiter · Saturn
Circled plus (lookalike)⊕ — math, not Earth
Generated text via ::before / ::aftercontent: "\2641"

Live Preview

Earth rendered alone, in a label, and compared with related planetary symbols.

Glyph ♁
Large glyph ♁
Label Planet: ♁
Compared ♁   ♀   ♂   ☿   ♃   ⊕
With entities Hex: ♁ | Decimal: ♁

Complete HTML Example

One page that shows Earth with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ♁ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Earth (U+2641) in HTML</title>
  <style>
    #point::after {
      content: "\2641";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x2641;</p>
  <p>Built with Decimal: &#9793;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ♁</p>
  <p>Label: Planet ♁</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x2641; inserts code point U+2641 → ♁.

2. Decimal: same code point as 9793 → &#9793;. Same visual as hex.

3. CSS: use \2641 in content (not an HTML entity). #point::after appends ♁.

4. Typed: paste ♁ in a UTF-8 document, or pair it with a label like Planet ♁.

Pitfalls & Tips

Common mistakes when working with Earth.

Name

No named entity

There is no HTML5 named entity for U+2641. Use &#x2641; or &#9793;.

⊕

Not &oplus;

&oplus; is circled plus (U+2295). It can look similar in some fonts but is a math operator, not Earth.

♀

Not Venus or Mars

&female; is Venus (U+2640). &male; is Mars (U+2642). Earth sits between them in the planetary sequence.

CSS vs HTML

Do not mix escapes

\2641 belongs in CSS strings. &#x2641; / &#9793; belong in HTML.

Fonts

Symbol font coverage

Some fonts omit planetary glyphs. Prefer a font with solid Miscellaneous Symbols coverage.

a11y

Add accessible text

A lone planetary symbol can be unclear to screen readers. Pair it with visible text (e.g. “Earth”) or an aria-label.

Semicolon

End references

Always finish numeric entities with ; — write &#x2641;, not &#x2641.

Browser Support

Earth (U+2641) and its entity forms (&#x2641;, &#9793;, CSS \\2641) are supported in all mainstream browsers. Visible glyphs depend on Miscellaneous Symbols font coverage.

✓ Universal support

Earth (&#x2641;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2641 / entities Full support

Bottom line: Prefer &#x2641; in HTML (no named form). Use &#9793; when decimal form is required, and \\2641 only inside CSS content.

Key Takeaways

  • Unicode: earth is U+2641 (decimal 9793) — glyph ♁.
  • HTML: no named entity — use &#x2641; / &#9793; / type ♁.
  • CSS: use \2641 inside content for generated text.
  • Shape: Earth ≠ Venus (&female;) ≠ circled plus (&oplus;).

One line: U+2641 → &#x2641; / &#9793; / CSS \2641.

Frequently Asked Questions

Use &#x2641; (hex), &#9793; (decimal), type ♁ directly in UTF-8, or the CSS escape \2641 in content. There is no named HTML entity for U+2641.
U+2641 (EARTH). Hex 2641, decimal 9793. It belongs to the Miscellaneous Symbols block (U+2600–U+26FF).
No. Use numeric forms &#9793; or &#x2641;. Related planetary symbols include &female; (Venus, U+2640) and &male; (Mars, U+2642).
Use it for Earth in astrology, astronomy, and planetary lists. Prefer emoji globe characters (e.g. U+1F30D) for decorative “world” icons, and &oplus; only for circled-plus math.
HTML entities (&#9793; or &#x2641;) go in markup. The CSS escape \2641 goes in stylesheet strings (usually content on ::before/::after).
No. U+2641 is ♁ (Earth). &oplus; is ⊕ (U+2295, circled plus). &female; is ♀ (U+2640, Venus).

Did you know?

Earth is Unicode U+2641 (decimal 9793) — glyph ♁ (EARTH) in Miscellaneous Symbols. There is no HTML5 named entity; use &#x2641; or &#9793;. Nearby planets include U+2640 (♀, Venus / &female;) and U+2642 (♂, Mars / &male;). Do not confuse with &oplus; (⊕, circled plus).

Next: East Syriac Cross

Learn the HTML entity for east Syriac cross (U+2671).

East Syriac Cross tutorial →

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