HTML Entity for Beamed Sixteenth Notes (♬)

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

What You'll Learn

How to display beamed sixteenth notes (♬) in HTML using numeric character references and CSS. This character is U+266C (beamed sixteenth notes) in the Miscellaneous Symbols block (roughly U+2600–U+26FF). It denotes two sixteenth notes joined by a beam—a denser rhythm icon than beamed eighths (♫, U+266B) for faster passages, subdivisions, and drum or strumming shorthand in prose.

There is no named HTML entity for this symbol. Use ♬ or ♬ in markup, or \266C in stylesheet content on pseudo-elements. Like ♫, it is a dingbat for UI and lessons, not a substitute for full music engraving.

⚡ Quick Reference — Beamed Sixteenth Notes

Unicode U+266C

Miscellaneous Symbols

Hex Code ♬

Hexadecimal reference

HTML Code ♬

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+266C
Hex code       ♬
HTML code      ♬
Named entity   —
CSS code       \266C
1

Complete HTML Example

This example demonstrates beamed sixteenth notes using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\266C";
  }
 </style>
</head>
<body>
<p>Beamed Sixteenth Notes using Hexa Decimal: &#x266C;</p>
<p>Beamed Sixteenth Notes using HTML Code: &#9836;</p>
<p id="point">Beamed Sixteenth Notes using CSS Entity: </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+266C is widely supported wherever Unicode Miscellaneous Symbols render correctly:

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

👀 Live Preview

See ♬ (U+266C) next to beamed eighths ♫ (U+266B) and the single eighth ♪ (U+266A):

Rhythm row Eighth ♪   Beamed eighths ♫   Beamed sixteenths ♬
Large glyph
Lesson snippet Subdivide the beat: ♬ — four notes where ♫ shows two.
Monospace refs &#x266C; &#9836; \266C
Note Glyph shape varies by font; use a music font when ♬ must align with ♫ in tight tables.

🧠 How It Works

1

Hexadecimal Code

&#x266C; references code point U+266C using hex digits 266C after the #x prefix.

HTML markup
2

Decimal HTML Code

&#9836; is the decimal equivalent (9836) for the same beamed sixteenth notes character.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity; pick one numeric style per document for consistency.

Use Cases

The beamed sixteenth notes symbol (♬) is commonly used for:

♬ Faster rhythms

Double-time passages, fills, and subdivision callouts in lessons.

🎵 Sheet music & apps

Icons for sixteenth-based patterns in lightweight viewers.

🎼 Strumming & tabs

Dense picking or hi-hat patterns shown beside chord grids.

📖 Theory & drills

Counting “1 e & a” rows and metronome-style copy.

🎤 Lyrics & guides

When the lyric line needs a busier beat symbol than ♫.

🖥 Product UI

Tempo or groove presets labeled with Unicode instead of bitmaps.

♿ Accessibility

Pair ♬ with visible text or aria-label (“Beamed sixteenth notes”) so the glyph is not the only cue.

💡 Best Practices

Do

  • Use &#x266C; or &#9836; consistently within one page
  • Contrast ♬ with ♫ in copy when you mean sixteenths vs eighths
  • Use a music font when ♬ and ♫ must align in the same row
  • Use \266C only inside CSS content, not pasted into HTML text
  • Spell out counts (“four sixteenths per beat”) for beginners

Don’t

  • Use ♬ interchangeably with ♫ without telling readers which subdivision you mean
  • Expect ♬ to replace SMuFL or engraved beams for publication-quality scores
  • Rely on ♬ alone in navigation without a text label
  • Confuse U+266C with unrelated 266x symbols—verify the chart
  • Use CSS escapes inside HTML markup (they belong in stylesheets)

Key Takeaways

1

Two numeric references render the same glyph

&#x266C; &#9836;
2

In CSS content, use the escape

\266C
3

Unicode U+266C is beamed sixteenth notes; no standard named entity

4

Pair with ♫ (eighth beam) and ♪ (single eighth) for a clear rhythm ladder

5

Add text or ARIA when the mark carries meaning for users or assistive tech

❓ Frequently Asked Questions

Use &#x266C; (hex), &#9836; (decimal), or \266C in CSS content. There is no named entity; all valid methods render ♬.
U+266C (hex 266C, decimal 9836). It lives in the Miscellaneous Symbols block.
When copy needs a busier rhythm icon than beamed eighths: subdivisions, strumming density, drum patterns, and theory about sixteenth-note motion.
Numeric references belong in HTML. The \266C escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x266C;, &#9836;, or \266C in CSS depending on whether you are authoring markup or styles.

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