HTML Entity for Quarter Note (♩)

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

What You'll Learn

How to display the quarter note symbol (♩) in HTML using hexadecimal, decimal, and CSS escape methods. This is the standard crotchet note in Western music notation—one beat in common time.

It is U+2669 (QUARTER NOTE) in the Miscellaneous Symbols block (U+2600–U+26FF). Use ♩, ♩, or CSS \2669. There is no named HTML entity for this character.

⚡ Quick Reference — Quarter Note

Unicode U+2669

Miscellaneous Symbols

Hex Code ♩

Hexadecimal reference

HTML Code ♩

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2669
Hex code       ♩
HTML code      ♩
Named entity   (none)
CSS code       \2669
Meaning        Quarter note (crotchet)
Related        U+266A = Eighth note (♪)
               U+266B = Beamed eighth notes (♫)
Block          Miscellaneous Symbols (U+2600–U+26FF)
1

Complete HTML Example

A simple example showing ♩ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2669";
  }
 </style>
</head>
<body>
<p>Note (hex): &#x2669; = 1 beat</p>
<p>Note (decimal): &#9833; = 1 beat</p>
<p>Note (CSS): <span id="point"></span> = 1 beat</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The quarter note symbol is widely supported when fonts include Miscellaneous Symbols (U+2600–U+26FF):

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

👀 Live Preview

See ♩ rendered live in different contexts:

Rhythm ♩ ♩ ♪ ♪ (quarter, quarter, eighth, eighth)
Large glyph
Duration ♩ = 1 beat in 4/4 time
Related notes ♩ quarter   ♪ eighth   ♫ beamed
Numeric refs &#x2669; &#9833; \2669

🧠 How It Works

1

Hexadecimal Code

&#x2669; uses the Unicode hexadecimal value 2669 to display the quarter note symbol.

HTML markup
2

Decimal HTML Code

&#9833; uses the decimal Unicode value 9833 to display the same character.

HTML markup
3

CSS Entity

\2669 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+2669 in Miscellaneous Symbols (U+2600–U+26FF). No named HTML entity exists.

Use Cases

The quarter note symbol (♩) commonly appears in:

🎵 Sheet Music

Online scores, tutorials, and rhythm notation previews.

🎓 Music Education

Lessons on note values, time signatures, and rhythm.

🎧 Audio Apps

DAW interfaces, metronome apps, and music player UIs.

📝 Lyrics & Blogs

Music blogs, chord charts, and song structure guides.

📋 Unicode References

Character pickers and Miscellaneous Symbols documentation.

🎸 Instrument Sites

Piano, guitar, and theory resources showing note durations.

♿ Accessibility

Pair ♩ with “quarter note” in alt text for screen readers.

💡 Best Practices

Do

  • Use &#x2669; or &#9833; for the quarter note glyph
  • Distinguish ♩ from ♪ (eighth note, &sung;)
  • Pick one style (hex or decimal) per project
  • Use music fonts or SVG for professional engraved notation when needed
  • Test rendering across browsers and devices

Don’t

  • Assume a named entity exists—there is none for ♩
  • Substitute ♪ when ♩ (quarter note) is intended
  • Use ♩ for full engraved sheet music—use dedicated notation formats
  • Use CSS escape \2669 inside HTML text nodes
  • Use HTML entities in JS (use \u2669 instead)

Key Takeaways

1

Two HTML numeric references render ♩

&#x2669; &#9833;
2

For CSS stylesheets, use the escape in the content property

\2669
3

Unicode U+2669 is QUARTER NOTE in Miscellaneous Symbols

4

No named HTML entity—use numeric codes or CSS escape only

❓ Frequently Asked Questions

Use &#x2669; (hex), &#9833; (decimal), or \2669 in CSS content. There is no named HTML entity for this symbol.
U+2669 (QUARTER NOTE). Miscellaneous Symbols block. Hex 2669, decimal 9833.
No. Use numeric references &#x2669; or &#9833;, or the CSS escape \2669.
♩ (U+2669) is a quarter note—one beat in common time. ♪ (U+266A, &sung;) is an eighth note—half a beat.
In music notation, sheet music previews, music education sites, lyrics pages, and audio app interfaces.

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