HTML Entity for Low Asterisk (⁎)

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

What You'll Learn

How to display the Low Asterisk (⁎) in HTML using various entity methods. The Low Asterisk is a punctuation mark positioned near the baseline of text (unlike the standard asterisk U+002A) and is useful for footnotes, reference markers, and typographic design.

This character is part of the General Punctuation Unicode block and can be rendered with a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity for this symbol.

⚡ Quick Reference — Low Asterisk Entity

Unicode U+204E

General Punctuation

Hex Code ⁎

Hexadecimal reference

HTML Code ⁎

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+204E
Hex code       ⁎
HTML code      ⁎
Named entity   (none)
CSS code       \204E
Meaning        Low asterisk
Related        U+002A = * (standard mid-line asterisk)
Block          General Punctuation (U+2000–U+206F)
1

Complete HTML Example

A simple example showing the Low Asterisk (⁎) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\204E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x204E;</p>
<p>Symbol (decimal): &#8270;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Low Asterisk (⁎) is supported in modern browsers when the font includes General Punctuation glyphs:

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

👀 Live Preview

See the Low Asterisk (⁎) in footnote and typography contexts:

Large glyph
Footnote markerSee note⁎ below
Compare⁎ (low) vs * (standard U+002A)
CitationSource required⁎
Numeric refs&#x204E; &#8270; \204E

🧠 How It Works

1

Hexadecimal Code

&#x204E; uses the Unicode hexadecimal value 204E to display the Low Asterisk. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8270; uses the decimal Unicode value 8270 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

\204E 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+204E sits in General Punctuation and is positioned near the baseline—unlike the standard asterisk U+002A (*). There is no named HTML entity.

Use Cases

The Low Asterisk (⁎) is commonly used in:

📝 Footnotes & references

Mark footnotes, endnotes, and reference callouts in articles, papers, and documentation.

🎨 Typography & design

Use in layouts where a baseline-positioned asterisk is preferred for visual balance.

📄 Academic & legal

Indicate notes, disclaimers, or citations in academic and legal documents.

📋 Lists & notation

Use as a secondary or alternative bullet or marker in lists and structured content.

🔢 Mathematical notation

Represent operators or placeholders where a low asterisk is required in technical notation.

🌐 Web content & forms

Mark required fields, notes, or hints in forms and UI copy with a distinct asterisk style.

📖 Publishing & editorial

Use in editorial workflows for corrections, annotations, or special markers in published content.

💡 Best Practices

Do

  • Pair footnote markers with <sup> links or aria-label for accessibility
  • Use numeric references (&#x204E; or &#8270;) consistently in HTML
  • Link each footnote marker to its note via id and href
  • Verify the glyph is distinguishable from the standard asterisk (*) in your font
  • Use \204E in CSS content when inserting via pseudo-elements

Don’t

  • Confuse ⁎ (low asterisk) with * (standard U+002A) or ∗ (math asterisk U+2217)
  • Put CSS escape \204E in HTML text nodes
  • Expect a named HTML entity—only numeric codes work for ⁎
  • Use ⁎ without context when readers need to know it marks a footnote
  • Mix entity styles randomly in one file

Key Takeaways

1

Three references render ⁎ (no named entity)

&#x204E; &#8270;
2

For CSS stylesheets, use the escape in the content property

\204E
3

Unicode U+204E — LOW ASTERISK (baseline position)

4

Differs from standard asterisk U+002A (*) and math asterisk U+2217 (∗)

❓ Frequently Asked Questions

Use &#x204E; (hex), &#8270; (decimal), or \204E in CSS content. All produce ⁎. There is no named HTML entity.
U+204E (LOW ASTERISK). General Punctuation block. Hex 204E, decimal 8270. It is positioned near the baseline, unlike the standard asterisk U+002A (*) which sits at mid-line.
For footnote and reference markers, typography displays, academic and legal citations, list notation where a low asterisk is required, and any content where a baseline-positioned asterisk is preferred over the standard asterisk.
HTML code (&#8270; or &#x204E;) is used in HTML content. The CSS entity (\204E) is used in CSS, e.g. in the content property of ::before or ::after. Both produce ⁎ but in different contexts.
Named HTML entities are typically reserved for ASCII, Latin-1, and some common symbols. Punctuation characters like ⁎ use numeric codes (hex or decimal) because they are part of specialized Unicode blocks.

Explore More HTML Entities!

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