HTML Entity for Left Square Bracket Quill (⁅)

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

What You'll Learn

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

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

⚡ Quick Reference — Left Square Bracket Quill

Unicode U+2045

General Punctuation

Hex Code ⁅

Hexadecimal reference

HTML Code ⁅

Decimal reference

Named Entity

Use numeric codes only

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

Complete HTML Example

A simple example showing the Left Square Bracket 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: "\2045";
  }
 </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 Left Square Bracket 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 Left Square Bracket Quill (⁅) rendered live in different contexts:

Inline text ⁅editorial note⁆
Large glyph
Bracket pair ⁅content⁆
Notation ⁅x⁆ ≠ [x]
Bracket comparison [ ⁅ ⁆ ]
Numeric refs &#x2045; &#8261; \2045

🧠 How It Works

1

Hexadecimal Code

&#x2045; uses the Unicode hexadecimal value 2045 for the left square bracket with quill. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2045 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+2045 is in the General Punctuation block. There is no named HTML entity—use numeric codes. Pair with (U+2046) to close. Previous: Left Single Quotation Mark.

Use Cases

The Left Square Bracket Quill (⁅) is commonly used in:

📜 Specialized Notation

Use as an opening 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 right 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 &#x2045; or &#8261; for numeric references
  • Add aria-label or surrounding text for accessibility
  • Pair with ⁆ (U+2046) when bracketing content
  • Verify your font supports General Punctuation (U+2045)
  • Keep one entity style per project for consistency

Don’t

  • Assume a named HTML entity exists—there is none for U+2045
  • Substitute [ when the quill bracket variant is required
  • Use CSS \2045 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 ⁅

&#x2045; &#8261;
2

For CSS, use \2045 in the content property

3

Unicode U+2045 — LEFT SQUARE BRACKET WITH QUILL

4

No named HTML entity—use hex or decimal numeric codes

❓ Frequently Asked Questions

Use &#x2045; (hex), &#8261; (decimal), or \2045 in CSS content. All three methods render ⁅ correctly. There is no named HTML entity.
U+2045 (LEFT SQUARE BRACKET WITH QUILL). General Punctuation block (U+2000–U+206F). Hex 2045, decimal 8261.
In specialized notation, typography, or when a distinct left bracket variant (with quill) is needed in mathematical or editorial contexts.
HTML references (&#8261; or &#x2045;) go in markup. The CSS escape \2045 is used in stylesheets, typically on ::before or ::after. Both produce ⁅.
No. There is no named HTML entity for U+2045. Use &#8261; (decimal), &#x2045; (hex), or \2045 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