HTML Entity for Asterisk Below (U+0359)

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

What You'll Learn

How to insert the combining Asterisk Below mark (Unicode U+0359) in HTML using numeric character references or CSS. This is a combining diacritical—it should follow a base letter or symbol so browsers position the asterisk-like mark underneath.

It belongs to the Combining Diacritical Marks block. There is no standard named HTML entity; use ͙, ͙, or \0359 in stylesheet content when appropriate.

⚡ Quick Reference — Asterisk Below Entity

Unicode U+0359

Combining Diacritical Marks

Hex Code ͙

Hexadecimal reference

HTML Code ͙

Decimal reference

Named Entity

None (use numeric refs)

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

Complete HTML Example

This example shows the mark alone (for reference) and after a base letter a, which is how combining characters are normally used. The CSS content escape is included for completeness:

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

<p>Asterisk Below using Hexa Decimal: &#x0359;</p>
<p>Asterisk Below using HTML Code: &#857;</p>
<p>With base letter: a&#x0359; and a&#857;</p>
<p id="point">Asterisk Below using CSS Entity: </p>

</body>
</html>
Try it Yourself

🌐 Browser Support

Numeric references for U+0359 are supported in all modern browsers that support Unicode combining marks:

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

👀 Live Preview

Combining marks attach to the preceding character. Compare bare vs. combined:

With base letter a͙   n͙   o͙
Larger sample
In a word (illustrative) pha͙netic
Monospace IPA-style /no͙t/ (illustrative syllable)
Note Rendering depends on font support for U+0300–U+036F combining marks.

🧠 How It Works

1

Hexadecimal Code

&#x0359; encodes U+0359 in hex. Always place it after the base character in the document stream.

HTML markup
2

Decimal HTML Code

&#857; is the decimal equivalent (85710 = 0x359).

HTML markup
3

CSS Entity

\0359 can appear in CSS content. Pseudo-elements have no “base letter” in the text sense, so this is mainly for demos; real linguistic text usually uses markup with a base glyph plus &#x0359;.

CSS stylesheet
4

No named entity

HTML does not define a short name for U+0359. Stick to numeric references in content.

HTML markup
=

Same code point

All methods reference U+0359. With a base letter you get a single grapheme cluster such as for display and selection.

Use Cases

The combining asterisk below is used when you need an asterisk-like mark under a base letter:

🎤 Phonetics

Transcriptions where a diacritic below the letter carries linguistic meaning.

📚 Scholarly text

Philology, linguistics papers, and language documentation with rare diacritics.

✒ Typography

Custom editorial marks when Unicode combining marks are preferred over bitmaps.

📃 Dictionaries

Pronunciation or variant footnotes implemented as combining marks on headwords.

🌐 Extended Latin

Minority and historical orthographies built from base letters plus combining marks.

♿ Accessibility

Expose meaning in nearby text or aria-label when the mark is not spoken clearly.

🔬 QA / fonts

Regression tests for OpenType and web fonts that claim combining-mark coverage.

💡 Best Practices

Do

  • Always put &#x0359; immediately after the base character
  • Pick fonts with solid Combining Diacritical Marks coverage
  • Normalize text (NFC/NFD) consistently in CMS pipelines
  • Explain unusual marks in body copy for readers
  • Prefer real Unicode over images when copy-paste matters

Don’t

  • Place the combining mark before the base letter
  • Expect a standalone mark in content to look like textbook phonetics
  • Assume every system font stacks the mark identically
  • Confuse U+0359 with spacing asterisk U+002A (&#42;) or operator ∗
  • Forget screen-reader context for rare diacritics

Key Takeaways

1

U+0359 is a combining mark—pair it with a base character

&#x0359; &#857;
2

Example: a&#x0359; → a͙ in the browser

\0359 (CSS)
3

Block: Combining Diacritical Marks (U+0300–U+036F)

4

No named HTML entity for this code point

5

Decimal 857 equals hexadecimal 0359

❓ Frequently Asked Questions

Use &#x0359; or &#857; right after your base letter (for example a&#x0359;). For CSS-only demos you can use \0359 in content.
U+0359 (decimal 857). It is listed as “combining asterisk below” in the Unicode standard.
When your editorial or linguistic system calls for that exact combining mark—phonetic notation, dictionary marks, or scholarly typography.
Same code point: numeric references in HTML, \0359 escape in CSS. For real words, HTML with a base letter is usually clearer than a lone pseudo-element.
No. Use &#x0359;, &#857;, or a CSS escape.

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