HTML Entity for Single Right-Pointing Angle Quotation Mark (›)

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

What You'll Learn

How to display the Single Right-Pointing Angle Quotation Mark (›) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+203A (SINGLE RIGHT-POINTING ANGLE QUOTATION MARK) in the General Punctuation block (U+2000–U+206F)—used as a closing single guillemet in nested quotations, citations, and typography.

Render it with ›, ›, the named entity ›, or CSS \203A. Do not confuse › with the double guillemet Right Guillemet U+00BB (», »). Pair with the left mark U+2039 (‹, ‹) for balanced quotation formatting.

⚡ Quick Reference — Single Right-Pointing Angle Quotation Mark

Unicode U+203A

General Punctuation

Hex Code ›

Hexadecimal reference

HTML Code ›

Decimal reference

Named Entity ›

Standard HTML named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+203A
Hex code       ›
HTML code      ›
Named entity   ›
CSS code       \203A
Official name  Single right-pointing angle quotation mark
Pair with      U+2039 = ‹ (‹ left mark)
Not the same   U+00BB = » (» double guillemet)
Block          General Punctuation (U+2000–U+206F)
1

Complete HTML Example

A simple example showing › using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\203A";
  }
 </style>
</head>
<body>
<p>Angle quote (hex): &#x2039;inner&#x203A;</p>
<p>Angle quote (decimal): &#8249;inner&#8250;</p>
<p>Angle quote (named): &lsaquo;inner&rsaquo;</p>
<p id="point">Angle quote (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Single Right-Pointing Angle Quotation Mark (›) is widely supported in all modern browsers:

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

👀 Live Preview

See the single right-pointing angle quotation mark in typographic contexts:

Single symbol
Nested quote « Outer ‹inner› quote »
Named entity &rsaquo; renders as ›
Pair with left ‹quoted text› (&lsaquo; &rsaquo;)
Numeric refs &#x203A; &#8250; &rsaquo; \203A

🧠 How It Works

1

Hexadecimal Code

&#x203A; uses Unicode hexadecimal 203A to display the single right-pointing angle quotation mark.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&rsaquo; is the standard HTML named entity for U+203A—readable and preferred in HTML source when available.

HTML markup
4

CSS Entity

\203A is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

Quotation mark result

All four methods render . Unicode U+203A in General Punctuation. Pair with ‹ for opening quotes. Next: Six Petalled Black and White Florette.

Use Cases

The Single Right-Pointing Angle Quotation Mark (›) commonly appears in:

💬 Nested quotations

Closing inner quotes inside double guillemets or standard quotation marks.

📚 Citations

Academic references, footnotes, and bibliographic formatting.

🌐 Multilingual content

European typography and language-specific quotation conventions.

✎️ Typography

Professional writing, publishing, and editorial web content.

📄 Documentation

Technical docs, style guides, and punctuation reference pages.

💻 Web applications

CMS content, quote blocks, and formatted text editors.

💡 Best Practices

Do

  • Use &rsaquo; for readable HTML source in quotation markup
  • Pair › with ‹ (&lsaquo;) for balanced angle quotation marks
  • Set <meta charset="utf-8"> for reliable rendering
  • Distinguish single guillemets (U+2039/U+203A) from double guillemets (U+00AB/U+00BB)
  • Pick one reference style per project for consistency

Don’t

  • Use U+0203A or CSS \0203A—the correct value is U+203A and \203A
  • Confuse › with the double guillemet » (&raquo;)
  • Put CSS escape \203A in HTML text nodes
  • Use the right mark without a matching left mark in paired quotation contexts
  • Assume every angle bracket is an HTML tag—use entities in text content

Key Takeaways

1

Four ways to render U+203A in HTML and CSS

&#x203A; &rsaquo;
2

Named entity &rsaquo; is the most readable option in HTML markup

3

Unicode U+203A — SINGLE RIGHT-POINTING ANGLE QUOTATION MARK

4

Pair with U+2039 (‹, &lsaquo;) for opening single guillemets

❓ Frequently Asked Questions

Use &#x203A; (hex), &#8250; (decimal), &rsaquo; (named entity), or \203A in CSS content. All four render ›.
U+203A (SINGLE RIGHT-POINTING ANGLE QUOTATION MARK). General Punctuation (U+2000–U+206F). Hex 203A, decimal 8250, named entity &rsaquo;.
› (U+203A, &rsaquo;) is a single right-pointing angle quotation mark. » (U+00BB, &raquo;) is a double right-pointing angle quotation mark (right guillemet). They serve different typographic roles.
For nested quotations, citations, academic references, multilingual typography, and any content requiring single guillemet-style closing angle quotation marks. Pair with U+2039 (‹, &lsaquo;) for opening quotes.
HTML code (&rsaquo;, &#8250;, or &#x203A;) is used directly in HTML content. CSS entity \203A is used in stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

Explore More HTML Entities!

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