HTML Entity for Gimel Symbol (ℷ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2137

What Is Gimel Symbol?

Gimel symbol (ℷ) is the Unicode character at U+2137 in Letterlike Symbols. Official name: GIMEL SYMBOL. It is a letterlike form used in math and reference text — not the Hebrew letter itself.

Remember
Character     ℷ
Unicode       U+2137
Named entity  ℷ
Hex entity    ℷ
Decimal       ℷ
CSS escape    \2137
Meaning       letterlike gimel symbol
Not the same  ג (Hebrew gimel) · ℸ (dalet symbol) · G

Prefer ℷ in HTML. Alternatives: ℷ, ℷ, or type ℷ in a UTF-8 document. For Hebrew words, use the Hebrew letter ג (U+05D2).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityℷHTML markup (preferred)
Hex entityℷHTML markup
Decimal entityℷHTML markup
Direct characterℷHTML text (UTF-8)
CSS escape\2137Stylesheet content

When to Use Which

SituationUse
Readable HTML for ℷℷ
Actual Hebrew textHebrew letter gimel — ג (ג)
Related letterlike daletDalet symbol (ℸ, U+2138)
Plain ASCIIWrite gimel
Generated text via ::before / ::aftercontent: "\2137"

Live Preview

Symbol alone, in a sample label, and next to related forms.

Glyph ℷ
Large glyph ℷ
Sample Symbol: ℷ
Compared ℷ   ג   ℸ   G
With entities Named: ℷ | Hex: ℷ | Decimal: ℷ

Complete HTML Example

One page that shows ℷ with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to display ℷ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Gimel Symbol (U+2137) in HTML</title>
  <style>
    #point::after {
      content: "\2137";
    }
  </style>
</head>
<body>
  <p>Built with Named: &gimel;</p>
  <p>Built with Hex: &#x2137;</p>
  <p>Built with Decimal: &#8503;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ℷ</p>
  <p>Label: <span aria-label="gimel symbol">&gimel;</span></p>
  <p>Hebrew letter (different): &#x5D2;</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &gimel; is the HTML5 name for U+2137 → ℷ. Prefer this in markup.

2. Hex: &#x2137; inserts the same code point. Same visual as named.

3. Decimal: same code point as 8503 → &#8503;.

4. CSS: use \2137 in content (not an HTML entity). #point::after appends ℷ.

5. Typed: paste ℷ in a UTF-8 document when you need the letterlike gimel glyph. Compare with &#x5D2; for the Hebrew letter.

Pitfalls & Tips

Common mistakes when working with gimel symbol.

Name

Prefer &gimel;

The named entity is clearer than inventing alternate spellings. Use &gimel; for U+2137.

ג

Not Hebrew letter gimel

Hebrew gimel is ג (U+05D2). Letterlike gimel is ℷ. Use Hebrew letters for Hebrew words.

Font

Font coverage

Some fonts omit Letterlike Symbols. If ℷ is missing, fall back to a font with U+2137 coverage.

CSS vs HTML

Do not mix escapes

\2137 belongs in CSS strings. &gimel; / &#x2137; / &#8503; belong in HTML.

a11y

Add accessible text

Screen readers may not announce ℷ clearly. Prefer aria-label="gimel symbol" or nearby prose.

Semicolon

End references

Always finish entities with ; — write &gimel;, not &gimel.

Browser Support

Gimel symbol (U+2137) and its entity forms (&gimel;, &#x2137;, &#8503;, CSS \\2137) are supported in all mainstream browsers. Visible glyphs depend on Letterlike Symbols font coverage.

✓ Universal support

Gimel Symbol (&#x2137;)

Encode with named, hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2137 Full support

Bottom line: Prefer &gimel; in HTML. Use &#x2137; / &#8503; when numeric form is required, and \\2137 only inside CSS content.

Key Takeaways

  • Unicode: gimel symbol is U+2137 (decimal 8503) — glyph ℷ.
  • HTML: prefer &gimel; — also &#x2137; / &#8503; / type ℷ.
  • CSS: use \2137 inside content for generated text.
  • Meaning: ℷ ≠ ג — use Hebrew U+05D2 for Hebrew text.

One line: U+2137 → &gimel; / &#x2137; / &#8503; / CSS \2137.

Frequently Asked Questions

Prefer &gimel; (named). You can also use &#x2137; (hex), &#8503; (decimal), type ℷ in UTF-8, or the CSS escape \2137 in content.
U+2137 (GIMEL SYMBOL). Hex 2137, decimal 8503. It belongs to Letterlike Symbols (U+2100–U+214F).
Yes. HTML5 defines &gimel; for U+2137. Prefer it over numeric forms when you want readable markup.
Use it for letterlike references in math, Judaic studies notes, or typography demos. For actual Hebrew text, use the Hebrew letter gimel (U+05D2) instead.
HTML entities (&gimel;, &#8503;, or &#x2137;) go in markup. The CSS escape \2137 goes in stylesheet strings (usually content on ::before/::after).
No. U+2137 is the letterlike gimel symbol (ℷ, &gimel;). Hebrew letter gimel is U+05D2 (ג). Different blocks and uses.

Did you know?

Gimel symbol is Unicode U+2137 (decimal 8503) — glyph ℷ (GIMEL SYMBOL) in Letterlike Symbols. HTML5 named entity: &gimel;. Prefer &gimel; in HTML. It is a letterlike reference form, not the Hebrew letter gimel (ג, U+05D2). Related letterlike forms include dalet symbol (ℸ).

Next: Grapheme Joiner

Learn the HTML entity for combining grapheme joiner (U+034F).

Grapheme joiner tutorial →

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