HTML Entity for Lowercase C (c)

What You'll Learn
How to display the lowercase letter c in HTML using entity methods. The letter c is the third letter of the Latin alphabet (U+0063) and is part of the Basic Latin block. In most cases you can type it directly; numeric or CSS entities are useful when escaping, generating content via CSS, or ensuring correct encoding.
This character can be displayed using the character itself, a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity like &c; for this letter.
⚡ Quick Reference — Lowercase C Entity
U+0063Basic Latin (ASCII)
cHexadecimal reference
cDecimal reference
cType directly (no named entity)
Name Value
──────────── ──────────
Unicode U+0063
Hex code c
HTML code c
Named entity (none — use c directly)
CSS code \63
Meaning Latin small letter c
Related U+0043 = C (uppercase)
Block Basic Latin (U+0000–U+007F)Complete HTML Example
A simple example showing the lowercase letter c using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\63";
}
</style>
</head>
<body>
<p>Symbol (hex): c</p>
<p>Symbol (decimal): c</p>
<p>Symbol (direct): c</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase letter c (U+0063) is universally supported in all browsers and platforms as part of Basic Latin:
👀 Live Preview
See the lowercase letter c in common text contexts:
🧠 How It Works
Hexadecimal Code
c uses the Unicode hexadecimal value 63 to display the letter. The x prefix indicates hexadecimal format.
Decimal HTML Code
c uses the decimal Unicode value 99 to display the same character. This is the ASCII/Unicode decimal for c.
Direct Character
Type c directly in HTML. There is no named entity like &c;; the character itself is the standard approach in body text.
CSS Entity
\63 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All methods produce the glyph: c. Unicode U+0063 sits in Basic Latin. The uppercase form is U+0043 (C). In normal text, typing c is preferred.
Use Cases
The lowercase letter c (or its entity forms) is commonly used in:
Standard character in paragraphs, articles, and any Latin-script text. Usually typed directly.
When building HTML in code, using c or c ensures correct output regardless of encoding context.
Using \63 in the CSS content property to insert c via ::before or ::after.
Teaching the alphabet, phonics, or character encoding; entity codes clarify the exact character.
Documentation and tutorials that explain how to represent Basic Latin characters using HTML entities.
In some contexts, numeric entities can help avoid injection or encoding issues when the raw character might be misinterpreted.
CSS content or list-style may use the character via entity for styling or labeling.
💡 Best Practices
Do
- Type
cdirectly in body content; use entities only when necessary - Serve pages as UTF-8 so Basic Latin characters render without entities
- Use numeric references (
corc) when escaping is required - Use
\63in CSScontentwhen generating the letter via pseudo-elements - Remember lowercase c is U+0063 and uppercase C is U+0043 when case matters
Don’t
- Overuse numeric entities for
cin normal readable text - Expect a named HTML entity like
&c;—none exists for this letter - Put CSS escape
\63in HTML text nodes - Confuse plain
c(U+0063) with accented variants like ć (c with acute) - Mix entity styles randomly in one file without reason
Key Takeaways
Type c directly, or use hex/decimal references
c cFor CSS stylesheets, use the escape in the content property
\63Unicode U+0063 — LATIN SMALL LETTER C
Third letter of the Latin alphabet (Basic Latin block)
Previous: Lowercase B Topbar (ƃ) Next: Lowercase C Acute
❓ Frequently Asked Questions
c directly, or use c (hex), c (decimal), or \63 in CSS content. For most content, typing c is standard; use numeric or CSS entities when escaping or generating via CSS.U+0063 (LATIN SMALL LETTER C). Basic Latin block. Hex 63, decimal 99. It is the third letter of the Latin alphabet.::before/::after content, or ensuring encoding in legacy systems. For normal body text, typing c is preferred.c or c) is used in HTML content or attributes. The CSS entity (\63) is used in CSS, e.g. in the content property of pseudo-elements. Both produce c but in different contexts.&c; for the letter c. Use the character c directly, or numeric references c (decimal) or c (hex). Named entities are mainly for characters with special meaning (e.g. <, &).Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
