HTML Entity for Uppercase G Turned Sanserif (⅁)

What You'll Learn
How to display the uppercase g turned sanserif (⅁) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+2141 (TURNED SANS-SERIF CAPITAL G)—a rotated sans-serif capital G used in typography and specialized notation. It sits in the Letterlike Symbols block.
Render it with ⅁, ⅁, or CSS escape \2141. There is no named HTML entity for this character.
⚡ Quick Reference — Uppercase G Turned Sanserif Entity
U+2141Letterlike Symbols
⅁Hexadecimal reference
⅁Decimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+2141
Hex code ⅁
HTML code ⅁
Named entity (none)
CSS code \2141
Meaning Turned sans-serif capital G
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the uppercase g turned sanserif (⅁) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2141";
}
</style>
</head>
<body>
<p>Symbol (hex): ⅁</p>
<p>Symbol (decimal): ⅁</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase g turned sanserif (⅁) renders correctly in modern browsers when UTF-8 is used and the font supports Letterlike Symbols:
👀 Live Preview
See the uppercase g turned sanserif (⅁) in typographic contexts:
🧠 How It Works
Hexadecimal Code
⅁ uses the Unicode hexadecimal value 2141 to display the turned sanserif G. The x prefix indicates hexadecimal format.
Decimal HTML Code
⅁ uses the decimal Unicode value 8513 to display the same character. A common method for Letterlike Symbols.
CSS Entity
\2141 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ⅁. Unicode U+2141 sits in Letterlike Symbols. There is no named HTML entity. Do not confuse with plain G (U+0047).
Use Cases
The uppercase g turned sanserif (⅁) is commonly used in:
Font design, typeface development, and creative typographic projects using specialized character forms.
Academic papers, mathematical documentation, and scientific texts requiring letterlike symbols.
Logos, branding, and creative content featuring unique typographic characters.
Research publications and scholarly documentation using specialized typographic notation.
Character set demonstrations and Unicode showcases for Letterlike Symbols coverage.
Unicode tutorials and typography guides explaining letterlike symbol characters.
Websites and apps requiring distinct typographic symbols for visual or notational purposes.
💡 Best Practices
Do
- Use
⅁or⅁in HTML (no named entity exists) - Serve pages as UTF-8; you can also type ⅁ directly in UTF-8 source
- Use fonts that support Letterlike Symbols (U+2100–U+214F)
- Distinguish ⅁ from plain
G(U+0047) and other modified G letters - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Assume a named entity exists—there is none for ⅁
- Substitute plain
Gwhen ⅁ is required for typographic accuracy - Put CSS escape
\2141in HTML text nodes - Use padded Unicode notation like U+02141—the correct value is
U+2141 - Use
\02141in CSS—the correct escape is\2141
Key Takeaways
Three references render ⅁ (no named entity)
⅁ ⅁For CSS stylesheets, use the escape in the content property
\2141Unicode U+2141 — TURNED SANS-SERIF CAPITAL G
Letterlike Symbols block; specialized typographic and notational use
Previous: Uppercase G Stroke (Ǥ) Next: Uppercase H
❓ Frequently Asked Questions
⅁ (hex), ⅁ (decimal), or \2141 in CSS content. There is no named HTML entity for this character.U+2141 (TURNED SANS-SERIF CAPITAL G). Letterlike Symbols block. Hex 2141, decimal 8513. Used in typography, mathematical notation, and specialized design contexts.⅁ or ⅁) is used in HTML content. The CSS entity (\2141) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ⅁ but in different contexts.⅁ or ⅁ in HTML, or \2141 in CSS. It is a specialized letterlike symbol, not a standard alphabetic letter.Explore More HTML Entities!
Discover 1500+ HTML character references — extended Latin, phonetic symbols, and more.
8 people found this page helpful
