HTML Entity for Alembic (⚗)

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

What You'll Learn

How to display the Alembic symbol (⚗) in HTML using numeric character references or a CSS escape. Unicode assigns this code point the official name Alembic (U+2697)—the still used in alchemy and chemistry iconography.

The character lives in the Miscellaneous Symbols block (U+2600–U+26FF). There is no named HTML entity for ⚗, so you use ⚗ or ⚗ in markup, or \2697 in CSS content on pseudo-elements.

⚡ Quick Reference — Alembic Entity

Unicode U+2697

Miscellaneous Symbols block

Hex Code ⚗

Hexadecimal reference

HTML Code ⚗

Decimal reference

CSS Code \2697

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2697
Hex code       ⚗
HTML code      ⚗
Named entity   (none)
CSS code       \2697
1

Complete HTML Example

This example shows the Alembic symbol (⚗) using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2697";
  }
 </style>
</head>
<body>

<p>Alembic using Hexa Decimal: &#x2697;</p>
<p>Alembic using HTML Code: &#9879;</p>
<p id="point">Alembic using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

Numeric references for U+2697 are supported in all modern browsers. Final appearance depends on font coverage for the Miscellaneous Symbols block:

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

👀 Live Preview

See the Alembic symbol rendered in typical contexts:

Inline text Unit 3: Distillation ⚗ — module title in a course outline.
Large glyph
List marker style Lab safety ⚗ PPE ⚗ ventilation (decorative bullets).
Monospace ICON-U+2697
Font note Emoji-style U+2697 variants exist in some fonts; test your stack for outline vs filled appearance.

🧠 How It Works

1

Hexadecimal Code

&#x2697; references Unicode 2697 in hexadecimal. The x prefix marks a hex numeric character reference.

HTML markup
2

Decimal HTML Code

&#9879; is the decimal code point 9879 for the same character—often used when authors think in decimal Unicode values.

HTML markup
3

CSS Entity (Escape)

\2697 is the CSS escape (four hex digits) used in content on ::before / ::after to emit ⚗ without placing the raw character in HTML.

CSS stylesheet
=

Same visual result

All methods render . Unicode is U+2697 (Miscellaneous Symbols, U+2600–U+26FF). Official name: Alembic. There is no standard named HTML entity; stick to numeric references or CSS escapes.

Use Cases

The Alembic symbol (⚗) fits these kinds of content:

🔬 Science & Chemistry Education

Course pages, glossaries, and diagrams referencing distillation or historical apparatus.

⚗ History & Alchemy Themes

Museum sites, timelines, and narrative UX where a compact still icon fits the tone.

🧪 Lab & Process Software

Status chips, tool palettes, or flowchart legends (pair with text for critical controls).

🏛️ Cultural Heritage

Exhibit copy and digital tours for early chemistry collections.

📚 Unicode & Typography Docs

Specimens listing U+26xx symbols and fallback behavior.

💻 Games & Fiction UI

Fantasy crafting or potion UIs that borrow alchemical visual language.

🎨 Brand & Print Parity

Matching brochures or packaging that already use this Unicode glyph.

💡 Best Practices

Do

  • Use UTF-8 and one numeric style (hex or decimal) consistently
  • Add visible text or aria-label when ⚗ labels an interactive control
  • Prefer &#x2697; or &#9879; when generating HTML from code
  • Test body and UI fonts for Miscellaneous Symbols (U+2600–U+26FF) coverage
  • Use \2697 only in CSS content, not inside HTML text nodes

Don’t

  • Assume every custom webfont includes U+2697
  • Use ⚗ alone as the only accessible name for safety-critical lab actions
  • Mix hex and decimal references at random in one template
  • Paste CSS escapes into HTML markup (they belong in stylesheets)
  • Rely on the symbol alone where precise chemical apparatus diagrams are legally required

Key Takeaways

1

Two HTML numeric references render ⚗

&#x2697; &#9879;
2

In CSS, use the escape in content on pseudo-elements

\2697
3

Unicode U+2697 (Alembic) in Miscellaneous Symbols

4

There is no named HTML entity for this character—use numeric references

5

Pair ⚗ with words or ARIA so assistive tech and small screens stay clear

❓ Frequently Asked Questions

Use &#x2697; (hex), &#9879; (decimal), or \2697 in CSS content. All produce ⚗. There is no standard named entity.
U+2697 (hex 2697, decimal 9879). Unicode’s official name is Alembic; it sits in the Miscellaneous Symbols block (U+2600–U+26FF).
For science education, historical or alchemical storytelling, lab-themed UI, and decorative iconography where a universal still symbol is appropriate.
HTML numeric references (&#9879; or &#x2697;) go in markup. The CSS escape \2697 belongs in stylesheets, usually in the content property of ::before or ::after. Same glyph, different layers.
Named entities cover a limited set of characters. Pictorial symbols like U+2697 are normally written with hex or decimal numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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