HTML Entity for White Frowning Face (☹)

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

What You'll Learn

How to display the White Frowning Face symbol (☹) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2639 (WHITE FROWNING FACE) in the Miscellaneous Symbols block (U+2600–U+26FF)—a classic outline sad-face emoticon.

Render it with ☹, ☹, or CSS escape \2639. There is no named HTML entity. Do not confuse ☹ with ☺ (white smiling face) or modern emoji like 🙁 (slightly frowning face).

⚡ Quick Reference — White Frowning Face

Unicode U+2639

Miscellaneous Symbols

Hex Code ☹

Hexadecimal reference

HTML Code ☹

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2639
Hex code       ☹
HTML code      ☹
Named entity   (none)
CSS code       \2639
Meaning        White frowning face
Related        U+263A = ☺ (white smiling face)
               U+263B = ☻ (black smiling face)
               U+1F641 = 🙁 (slightly frowning face emoji)
Block          Miscellaneous Symbols (U+2600–U+26FF)
1

Complete HTML Example

A simple example showing White Frowning Face (☹) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #face:after{
   content: "\2639";
  }
 </style>
</head>
<body>
<p>White Frowning Face (hex): &#x2639;</p>
<p>White Frowning Face (decimal): &#9785;</p>
<p id="face">White Frowning Face (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+2639 is supported in modern browsers when the font includes Miscellaneous Symbols glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See White Frowning Face (☹) in context:

Large glyph
Feedback☹ Disappointed
Face pair☹ ☺
Not the same as🙁 (U+1F641, slightly frowning face emoji)
Numeric refs&#x2639; &#9785; \2639

🧠 How It Works

1

Hexadecimal Code

&#x2639; uses the Unicode hexadecimal value 2639 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9785; uses the decimal Unicode value 9785 to display the same character. A common method for symbol characters in HTML.

HTML markup
3

CSS Entity

\2639 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 the glyph: . Unicode U+2639 is the white frowning face in Miscellaneous Symbols. Not the same as ☺ (white smiling face) or 🙁 (emoji).

Use Cases

White Frowning Face (☹) is commonly used in:

💬 Social Content

Posts, comments, and messaging to express sadness or disappointment.

📹 Vintage-Style Emoji

Retro or classic emoticon styling in web content and design.

📝 Emotional Expression

Blogs, articles, and copy conveying concern or negative mood.

📋 Feedback Sections

Review forms and ratings to represent negative or unhappy feedback.

🖥 User Interfaces

Notifications and UI states that convey errors or unhappy outcomes.

🎨 Expressive Design

Creative layouts, artistic content, and expressive web elements.

♿ Accessibility

Pair ☹ with visible text or aria-label; do not rely on the glyph alone.

💡 Best Practices

Do

  • Use ☹ for a classic outline sad face; pair with ☺ for happy/sad contrast
  • Pair the face glyph with accessible text like “Sad” or aria-label
  • Pick one numeric style (hex or decimal) per project for consistency
  • Use fonts that support Miscellaneous Symbols characters
  • Test rendering across browsers and devices

Don’t

  • Confuse ☹ (white frowning face) with ☺ (white smiling face) or 🙁 (emoji)
  • Use the face glyph as the only emotional cue for critical feedback
  • Mix entity styles randomly in one file
  • Use CSS escape \2639 inside HTML markup
  • Expect a named HTML entity—none exists for ☹

Key Takeaways

1

Type ☹ directly, or use hex/decimal references

&#x2639; &#9785;
2

For CSS stylesheets, use the escape in the content property

\2639
3

Unicode U+2639 — WHITE FROWNING FACE (Miscellaneous Symbols)

4

U+2639/U+263A are classic sad/happy face pairs in Miscellaneous Symbols

❓ Frequently Asked Questions

Use &#x2639; (hex), &#9785; (decimal), or \2639 in CSS content. There is no named HTML entity. In UTF-8 you can also type ☹ directly.
U+2639 (WHITE FROWNING FACE). Miscellaneous Symbols block U+2600–U+26FF. Hex 2639, decimal 9785.
For showing sadness or disappointment, vintage-style emoji, social content, negative feedback sections, and expressive UI design.
HTML entities (&#9785; or &#x2639;) go directly in markup. The CSS escape \2639 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Miscellaneous Symbols like ☹ use numeric codes. Use &#9785; or &#x2639; in HTML, or \2639 in CSS.

Explore More HTML Entities!

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