HTML Entity for Reference Mark (※)

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

What You'll Learn

How to display the Reference Mark (※) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+203B (REFERENCE MARK) in the General Punctuation block (U+2000–U+206F)—widely used for footnotes, citations, and editorial reference notes, especially in East Asian typography where it is called kome (米).

Render it with ※, ※, or CSS escape \203B. There is no named HTML entity. Do not confuse ※ with an asterisk (*), dagger (), or section sign (§).

⚡ Quick Reference — Reference Mark

Unicode U+203B

General Punctuation (U+2000–U+206F)

Hex Code ※

Hexadecimal reference

HTML Code ※

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+203B
Hex code       ※
HTML code      ※
Named entity   (none)
CSS code       \203B
Meaning        Reference mark (kome)
Also called    Japanese kome (米), annotation mark
Related        U+2020 = dagger (†)
               U+002A = asterisk (*)
               U+00A7 = section sign (§)
Block          General Punctuation (U+2000–U+206F)
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: "\203B";
  }
 </style>
</head>
<body>
<p>Reference mark (hex): &#x203B;</p>
<p>Reference mark (decimal): &#8251;</p>
<p id="point">Reference mark (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Reference Mark (※) is widely supported in all modern browsers:

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

👀 Live Preview

See the Reference Mark (※) in common typographic contexts:

Single symbol
Footnote inline See note※ at the bottom of the page.
Citation marker Source reference※ — Smith, 2024
Not the same as Asterisk *  |  Dagger †  |  Section §
Numeric refs &#x203B; &#8251; \203B

🧠 How It Works

1

Hexadecimal Code

&#x203B; uses the Unicode hexadecimal value 203B to display the reference mark.

HTML markup
2

Decimal HTML Code

&#8251; uses the decimal Unicode value 8251 for the same character.

HTML markup
3

CSS Entity

\203B is used in CSS stylesheets in the content property of pseudo-elements for icons or labels.

CSS stylesheet
=

Reference mark result

All three methods render . Unicode U+203B in General Punctuation. Next: Registered Trade Mark Sign.

Use Cases

The Reference Mark (※) is commonly used in:

📝 Footnotes

Inline reference markers linking to notes at the bottom of articles or pages.

📖 Citations

Academic papers, bibliographies, and editorial reference annotations.

🌐 East Asian typography

Japanese, Korean, and Chinese content using kome-style reference marks.

📄 Documentation

Technical docs, legal text, and manuals with cross-reference notes.

📋 Unicode references

Character pickers, entity documentation, and punctuation symbol guides.

♿ Accessibility

Pair ※ with linked footnote text; use aria-describedby for screen readers.

💡 Best Practices

Do

  • Use &#x203B; or &#8251; for inline reference marks
  • Link footnote markers to their corresponding note with <a href>
  • Set <meta charset="utf-8"> for reliable rendering
  • Use ※ when East Asian reference typography is expected
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ※ with asterisk *, dagger †, or section sign §
  • Use padded Unicode notation like U+0203B—the correct value is U+203B
  • Use CSS escape \203B in HTML text nodes
  • Rely on ※ alone without a linked or visible footnote for accessibility
  • Assume every font renders General Punctuation identically—test your typeface

Key Takeaways

1

Two HTML numeric references plus CSS for U+203B

&#x203B; &#8251;
2

For CSS stylesheets, use \203B in the content property

3

Unicode U+203B — REFERENCE MARK (kome)

4

Distinct from asterisk *, dagger †, and section sign §

❓ Frequently Asked Questions

Use &#x203B; (hex), &#8251; (decimal), or \203B in CSS content. There is no named entity. All three render ※.
U+203B (REFERENCE MARK). General Punctuation block (U+2000–U+206F). Hex 203B, decimal 8251. Also called kome in Japanese typography.
No. ※ (U+203B) is the reference mark. * (U+002A) is an asterisk. † (U+2020) is a dagger. They are different Unicode characters.
For footnotes, citations, editorial reference notes, East Asian typography, and any content needing a distinctive annotation or cross-reference marker.
Named HTML entities cover a subset of common characters. U+203B uses numeric hex or decimal codes or CSS escapes, which is standard for General Punctuation symbols.

Explore More HTML Entities!

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