The capital O with accent mark, Ó or ó (o-acute), appears in names and languages where vowel length or stress matters. This guide explains what it means, where it occurs, how to type it, and how to handle it in searches, forms, and code. You will find clear rules, copy-paste characters, and practical patterns that remain useful across systems and regions.
What the Capital O with Acute Accent Means
The capital Ó is an orthographic letter formed by adding an acute accent to the uppercase O. In most languages, the accent signals stress or a distinct vowel quality. It is not decorative; it can change pronunciation and, in some cases, meaning. Lowercase ó follows the same principle in running text.
Pronunciation and Linguistic Role
Languages such as Czech, Slovak, and Polish use acute accents broadly to mark vowel length or color. In Irish and Scottish Gaelic, an acute accent (síne fada or slíochd) lengthens the vowel and often changes quality. In Vietnamese, ó is one of six O tones, where tone marks distinguish separate lexical items. Across these systems, Ó and ó are treated as distinct letters in collation where accents are significant.
Where You Encounter Ó and ó
O-acute appears in proper names, place names, and technical terms. It marks stress in dictionaries and language-learning materials. If you have searched for forms, login fields, or contact details containing Ó, you may have noticed that input handling and normalization differ between systems.
Notable Uses by Language
- Czech: Mária (Mary) uses the acute accent to indicate vowel length.
- Irish: Cór (heart) versus cor (advantage) shows how síne fada changes meaning.
- Vietnamese: Ố (tone 3) versus ó (tone 2) distinguishes words by pitch contour.
Typing the Capital O with Accent on Popular Platforms
Keyboard layouts rarely include dedicated keys for accented capitals, so you usually generate them with key combinations or on-screen tools. The steps vary by operating system, device, and application.
Windows Methods
- Alt codes: Hold Alt and type 0218 for Ó; release Alt. For ó, use Alt+0243.
- Character Map: Search for "Character Map", choose font, find uppercase Ó or lowercase ó, then copy.
- Touch keyboard: Enable the international keyboard or use the accent key (') followed by O.
macOS and iOS
- macOS: Press and hold O to open the accent picker, then click Ó or ó.
- iOS: Tap and hold O on the virtual keyboard, slide to ó or Ó, then lift.
ChromeOS, Android, and Linux
- ChromeOS: Enable US International or Extended keyboard, then use dead-key combinations.
- Android: Long-press O via a standard or third-party keyboard that supports accents.
- Linux: Use Compose key + ' + O for Ó, or Compose + ' + o for ó.
HTML and Digital Asset Encoding
In web pages, use numeric character references to avoid encoding mismatches. The decimal and hexadecimal forms render identically across browsers when the document encoding is correct.
| Character | HTML Decimal | HTML Hexadecimal | UTF-8 Bytes |
|---|---|---|---|
| Ó | Ó | Ó | C3 93 |
| ó | ó | ó | C3 B3 |
Normalization Forms to Know
Computers can store accented text in multiple forms: precomposed (single code point) or decomposed (letter + combining mark). Use NFC for general web text to ensure consistent search and comparison. In identifiers, URL encoding must represent the actual bytes; for example, ó becomes %C3%B3 in UTF-8 paths.
Searching Safely and Avoiding Rejection
Search engines normalize accented characters differently depending on language and region. Queries with Ó may match Ó, O, or o in some indexes, but not reliably. For forms and APIs, preserve the exact characters; some backends treat accented and non-accented code points as distinct.
Practical Search Tips
- Copy and paste Ó or ó into search boxes for best precision.
- Use filters or advanced search if the engine ignores accents by default.
- In code, explicitly set encoding (UTF-8) when reading or writing text with accents.
- When designing forms, store raw input and compare using normalization-aware functions if needed.
Bottom Line on Capital O with Accent Mark
Capital Ó and lowercase ó are distinct letters in many languages, used to convey pronunciation and meaning. Accurate handling improves search reliability, form submissions, and content clarity. With straightforward keyboard and HTML techniques, you can use O-acute confidently across platforms and applications.