HTML Entity for Cloud (☁)

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

What You'll Learn

How to display the Cloud (☁) symbol in HTML and CSS. This character is U+2601 (CLOUD) in the Miscellaneous Symbols block (U+2600–U+26FF). It is widely used for weather displays, forecasts, and cloud-related UI without image assets.

There is no named HTML entity for U+2601. Use ☁ or ☁ in markup, or \2601 in stylesheet content. Do not confuse ☁ with Black Sun Rays U+2600 (☀), the cloud-with-rain emoji U+1F327, or the white cloud emoji U+2601 FE0F variant styling.

⚡ Quick Reference — Cloud

Unicode U+2601

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

Hex Code ☁

Hexadecimal reference

HTML Code ☁

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2601
Hex code       ☁
HTML code      ☁
Named entity   —
CSS code       \2601
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2601";
  }
 </style>
</head>
<body>
<p>Cloud using Hexa Decimal: &#x2601;</p>
<p>Cloud using HTML Code: &#9729;</p>
<p id="point">Cloud using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2601 is supported in modern browsers; glyph appearance may vary by font:

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

👀 Live Preview

See the Cloud symbol in weather and UI contexts:

Weather ☁ Cloudy   ☁ Overcast
Cloud computing ☁ Cloud Storage   ☁ Cloud Backup
Large glyph
vs related symbols Cloud: ☁ (U+2601)   Sun: ☀ (U+2600)   Umbrella: ☂ (U+2602)
Monospace refs &#x2601; &#9729; \2601

🧠 How It Works

1

Hexadecimal Code

&#x2601; references code point U+2601 using hex digits 2601.

HTML markup
2

Decimal HTML Code

&#9729; is the decimal equivalent (9729) for the same character.

HTML markup
3

CSS Entity

\2601 is the CSS escape for U+2601, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the Cloud glyph: . Unicode U+2601 sits in Miscellaneous Symbols (U+2600–U+26FF). No named HTML entity exists.

Use Cases

The Cloud symbol (☁) commonly appears in:

🌤️ Weather apps

Cloud conditions in forecasts, widgets, and climate dashboards.

☁ Cloud computing

Cloud services, storage, and SaaS in articles, landing pages, and docs.

📊 Dashboard UI

Lightweight icons in admin panels, status indicators, and visualizations.

📱 Responsive design

Scalable symbol across screen sizes without image assets.

🌍 Climate content

Weather, environment, and sustainability topics in blogs and education.

🔤 Symbol references

Unicode tables and Miscellaneous Symbols glossaries.

♿ Accessibility

Pair with alt text or aria-label="cloud" so screen readers convey meaning.

💡 Best Practices

Do

  • Use &#x2601; or &#9729; consistently in HTML
  • Add visible text (“Cloudy”, “Cloud storage”) alongside icon-only uses
  • Use aria-label on decorative or status cloud icons
  • Choose fonts that support Miscellaneous Symbols (Segoe UI Symbol, Noto Sans Symbols)
  • Use \2601 only inside CSS content, not in HTML text nodes

Don’t

  • Confuse U+2601 (☁) with Black Sun Rays U+2600 (☀) or emoji variants
  • Use U+02601 notation—the correct code point is U+2601
  • Assume a named entity exists—U+2601 has none
  • Rely on the glyph alone without context in cloud-computing vs weather UI
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x2601; &#9729;
2

For CSS stylesheets, use the escape in the content property

\2601
3

U+2601 CLOUD

4

Ideal for weather and cloud-computing UI without images

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x2601; (hex), &#9729; (decimal), or \2601 in CSS content. There is no named HTML entity for U+2601.
U+2601 (CLOUD). Miscellaneous Symbols (U+2600–U+26FF). Hex 2601, decimal 9729.
In weather applications, cloud computing content, dashboard icons, environmental pages, and any web content needing a universal cloud character without image files.
Numeric references (&#9729; or &#x2601;) go directly in HTML markup. The CSS escape \2601 is used in stylesheets, typically in the content property of pseudo-elements.
Named HTML entities cover commonly used characters; symbols like U+2601 in Miscellaneous Symbols use numeric codes. This is standard for many symbol characters in HTML.

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