HTML Entity for Uppercase U (U)

What You'll Learn
How to display the uppercase letter U in HTML using entity methods and direct character input. The letter U is the twenty-first letter of the Latin alphabet (U+0055) and is part of the Basic Latin block. It appears in proper nouns, acronyms (URL, UDP, UTF, Unicode), headings, and any text that requires capitalization. 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 &U; for this letter.
⚡ Quick Reference — Uppercase U Entity
U+0055Basic Latin (ASCII)
UHexadecimal reference
UDecimal reference
UType directly (no named entity)
Name Value
──────────── ──────────
Unicode U+0055
Hex code U
HTML code U
Named entity (none — use U directly)
CSS code \0055
Meaning Latin capital letter U
Related U+0075 = u (lowercase)
Block Basic Latin (U+0000–U+007F)Complete HTML Example
A simple example showing the uppercase letter U using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#letter:after{
content: "\0055";
}
</style>
</head>
<body>
<p>Symbol (hex): U</p>
<p>Symbol (decimal): U</p>
<p>Symbol (direct): U</p>
<p id="letter">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase letter U (U+0055) is universally supported in all browsers and platforms as part of Basic Latin:
👀 Live Preview
See the uppercase letter U in common text contexts:
🧠 How It Works
Hexadecimal Code
U uses the Unicode hexadecimal value 55 to display the letter. The x prefix indicates hexadecimal format.
Decimal HTML Code
U uses the decimal Unicode value 85 to display the same character. This is the ASCII/Unicode decimal for U.
Direct Character
Type U directly in HTML. There is no named entity like &U;; the character itself is the standard approach in body text.
CSS Entity
\0055 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: U. Unicode U+0055 sits in Basic Latin. The lowercase form is U+0075 (u). In normal text, typing U is preferred over numeric entities.
Use Cases
The uppercase letter U (or its entity forms) is commonly used in:
Sentence starts, proper nouns, and titles where the letter U begins a word.
Tutorials, API docs, and code samples that show the character U as an entity or escape.
Abbreviations such as URL, UDP, UTF, and Unicode where U appears in the name.
Proper nouns and place names in English, Spanish, French, Portuguese, and other Latin-script languages.
Page titles, section headings, and navigation labels that start with U.
When building HTML in code, using U or U ensures correct output regardless of encoding context.
Using \0055 in the CSS content property to insert U via pseudo-elements.
💡 Best Practices
Do
- Type
Udirectly in body content; use entities only when necessary - Serve pages as UTF-8 so Basic Latin characters render without entities
- Use numeric references (
UorU) when escaping is required - Use
\0055in CSScontentwhen generating the letter via pseudo-elements - Remember uppercase U is U+0055 and lowercase u is U+0075 when case matters
Don’t
- Overuse numeric entities for
Uin normal readable text - Expect a named HTML entity like
&U;—none exists for this letter - Use
\00055in CSS—the correct escape is\0055 - Double-encode numeric references in dynamically generated HTML
- Put CSS escape
\0055in HTML text nodes
Key Takeaways
Type U directly, or use hex/decimal references
U UFor CSS stylesheets, use the escape in the content property
\0055Unicode U+0055 — LATIN CAPITAL LETTER U
Twenty-first letter of the Latin alphabet (Basic Latin block)
Previous: Uppercase Thorn (Þ) Next: Uppercase U Acute
❓ Frequently Asked Questions
U directly, or use U (hex), U (decimal), or \0055 in CSS content. There is no named HTML entity for U. For most content, typing U is standard; use numeric or CSS entities when escaping or generating via CSS.U+0055 (LATIN CAPITAL LETTER U). Basic Latin block. Hex 55, decimal 85. It is the twenty-first letter of the Latin alphabet and a standard character in virtually all Western scripts.U or U, or the CSS entity \0055. In UTF-8 pages you can type U directly.U or U) is used in HTML content; CSS entity \0055 is used in stylesheets in the content property of pseudo-elements. Both produce the character U.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
