HTML Entity for Dot Above Right (͘)

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

What You'll Learn

How to display the Combining Dot Above Right in HTML using hexadecimal, decimal, and CSS entity methods. This mark is U+0358 (COMBINING DOT ABOVE RIGHT) in the Combining Diacritical Marks block (U+0300–U+036F). It places a dot above and to the right of a base letter (e.g. in Pe\u030dh-\u014de-j\u012b / POJ) and is essential for Southern Min romanization and related linguistic content.

There is no named HTML entity for U+0358. Use ͘, ͘, or \0358 in CSS content immediately after the base letter. Do not confuse with U+0307 (combining dot above, centered) or other combining dots.

⚡ Quick Reference — Dot Above Right

Unicode U+0358

Combining Diacritical Marks block

Hex Code ͘

Hexadecimal reference

HTML Code ͘

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0358
Hex code       ͘
HTML code      ͘
Named entity   —
CSS code       \0358
1

Complete HTML Example

This example demonstrates the combining dot above right using hexadecimal code, decimal HTML code, and a CSS content escape, plus attaching the mark to a base letter:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0358";
  }
 </style>
</head>
<body>
<p>Dot Above Right using Hexadecimal: &#x0358;</p>
<p>Dot Above Right using HTML Code: &#856;</p>
<p id="point">Dot Above Right using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+0358 and combining sequences are supported in modern browsers with UTF-8 and fonts that render Combining Diacritical Marks (U+0300–U+036F):

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

👀 Live Preview

See the combining dot above right on base letters:

POJ (O͘) O͘   o͘
Dot above vs right Ȯ (U+0307)   O͘ (U+0358)
Isolated mark ͘
Monospace refs &#x0358; &#856; \0358

🧠 How It Works

1

Hexadecimal Code

&#x0358; uses the Unicode hexadecimal value 0358 for the combining dot above right. Place it immediately after the base letter.

HTML markup
2

Decimal HTML Code

&#856; uses the decimal Unicode value 856 to display the same combining mark.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Combines above and to the right

The mark attaches above and to the right of the preceding character: . Unicode U+0358. No named entity. Distinct from U+0307 (dot above, centered).

Use Cases

The combining dot above right (U+0358) is commonly used in:

📚 POJ orthography

Pe\u030dh-\u014de-j\u012b (POJ) romanization for Southern Min (Hokkien), including O͘ vowels.

🔤 Southern Min

Language resources, dictionaries, and courses for Hokkien and related varieties.

📝 Linguistics

Transliteration, phonetics, and academic notation requiring dot-above-right marks.

📐 Typography

Specialized fonts and publishing for scripts that use combining diacritics.

📝 Character references

HTML entity guides for combining marks and special characters.

📑 Entity guides

Complete references for displaying diacritical marks in HTML.

💡 Best Practices

Do

  • Place &#x0358; or &#856; immediately after the base letter
  • Use UTF-8 and fonts with Combining Diacritical Marks coverage
  • Use phonetic fonts (Charis SIL, Doulos SIL, Noto Sans) when possible
  • Use \0358 in CSS content for generated accents
  • Pick one numeric style (hex or decimal) per project

Don’t

  • Confuse U+0358 (dot above right) with U+0307 (dot above, centered)
  • Expect a named HTML entity (none exists for U+0358)
  • Put the combining mark before the base letter
  • Use CSS escape \0358 inside HTML markup
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

Combining mark U+0358—no named entity

&#x0358; &#856;
2

For CSS, use \0358 in the content property

\0358
3

COMBINING DOT ABOVE RIGHT—used in POJ (O͘)

4

Distinct from U+0307 (combining dot above)

5

UTF-8 + correct letter order—widely supported with suitable fonts

❓ Frequently Asked Questions

Use &#x0358; (hex), &#856; (decimal), or \0358 in CSS content immediately after the base letter (e.g. O&#x0358; in POJ). There is no named HTML entity for U+0358.
U+0358 (COMBINING DOT ABOVE RIGHT). Combining Diacritical Marks block (U+0300–U+036F). Hex 0358, decimal 856. The mark combines above and to the right of the preceding character.
For Pe\u030dh-\u014de-j\u012b (POJ) and Southern Min transliteration, linguistic and phonetic content, dictionary or language-learning sites for these scripts, and any content that requires the dot-above-right diacritic.
U+0307 centers the dot above the letter (ė). U+0358 places the dot above and to the right (O͘ in POJ). Use U+0358 for POJ and Southern Min orthography.
HTML5 named entities do not include combining diacritical marks. Use &#856; or &#x0358; in HTML, or \0358 in CSS. This is standard for characters in the Combining Diacritical Marks block.

Explore More HTML Entities!

Discover 1500+ HTML character references — combining marks, symbols, math operators, 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