HTML Entity for Right Square Bracket With Quill (⁆)

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

What You'll Learn

How to display the Right Square Bracket With Quill (⁆) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2046 (RIGHT SQUARE BRACKET WITH QUILL) in the General Punctuation block (U+2000–U+206F)—a right square bracket with a quill (ornamental variant), used in specialized notation and typography.

Render it with ⁆, ⁆, or CSS \2046. There is no named HTML entity. Do not confuse ⁆ with U+005D (], standard right square bracket) or U+2045 (⁅, left square bracket with quill).

⚡ Quick Reference — Right Square Bracket With Quill

Unicode U+2046

General Punctuation

Hex Code ⁆

Hexadecimal reference

HTML Code ⁆

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2046
Hex code       ⁆
HTML code      ⁆
Named entity   (none)
CSS code       \2046
Meaning        Right square bracket with quill
Related        U+005D = right square bracket (])
               U+2045 = left square bracket with quill (⁅)
1

Complete HTML Example

A simple example showing the Right Square Bracket With Quill (⁆) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2046";
  }
 </style>
</head>
<body>
<p>Bracket (hex): &#x2045;note&#x2046;</p>
<p>Bracket (decimal): &#8261;note&#8262;</p>
<p id="point">Bracket (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Square Bracket With Quill (⁆) is supported in all modern browsers when the font includes General Punctuation glyphs:

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

👀 Live Preview

See the Right Square Bracket With Quill (⁆) rendered live in different contexts:

Inline text ⁅editorial note⁆
Large glyph
Bracket pair ⁅content⁆
Notation ⁅x⁆ ≠ ]x]
Bracket comparison ] ⁅ ⁆ ]
Numeric refs &#x2046; &#8262; \2046

🧠 How It Works

1

Hexadecimal Code

&#x2046; uses the Unicode hexadecimal value 2046 for the right square bracket with quill. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8262; uses the decimal Unicode value 8262 to display the same character.

HTML markup
3

CSS Entity

\2046 is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2046 is in the General Punctuation block. There is no named HTML entity—use numeric codes. Pair with (U+2045) to open. Previous: Right Single Quotation Mark.

Use Cases

The Right Square Bracket With Quill (⁆) is commonly used in:

📜 Specialized Notation

Use as a closing bracket in notation systems that require the quill variant.

📄 Typography

Display in editorial or typographic contexts that use this bracket style.

📄 Technical Documentation

Pair with left square bracket quill (⁅) for bracketed content in specs.

📐 Math & Logic

Represent interval or set notation with a distinct bracket style where required.

📚 Character Sets

Document or demonstrate General Punctuation characters in tutorials.

🎨 Custom Styling

Use in CSS content or design systems that need this bracket character.

💡 Best Practices

Do

  • Use &#x2046; or &#8262; for numeric references
  • Add aria-label or surrounding text for accessibility
  • Pair with ⁅ (U+2045) when bracketing content
  • Verify your font supports General Punctuation (U+2046)
  • Keep one entity style per project for consistency

Don’t

  • Assume a named HTML entity exists—there is none for U+2046
  • Substitute ] when the quill bracket variant is required
  • Use CSS \2046 inside HTML text nodes
  • Mix entity styles randomly in one file
  • Leave brackets unpaired when using ⁅ and ⁆

Key Takeaways

1

Two HTML references plus CSS all render ⁆

&#x2046; &#8262;
2

For CSS, use \2046 in the content property

3

Unicode U+2046 — RIGHT SQUARE BRACKET WITH QUILL

4

No named HTML entity—use hex or decimal numeric codes

❓ Frequently Asked Questions

Use &#x2046; (hex), &#8262; (decimal), or \2046 in CSS content. All three methods render ⁆ correctly. There is no named HTML entity.
U+2046 (RIGHT SQUARE BRACKET WITH QUILL). General Punctuation block (U+2000–U+206F). Hex 2046, decimal 8262.
In specialized notation, typography, or when a distinct right bracket variant (with quill) is needed in mathematical or editorial contexts.
HTML references (&#8262; or &#x2046;) go in markup. The CSS escape \2046 is used in stylesheets, typically on ::before or ::after. Both produce ⁆.
No. There is no named HTML entity for U+2046. Use &#8262; (decimal), &#x2046; (hex), or \2046 in CSS.

Explore More HTML Entities!

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