Which accented c do you need?
The accent tells you the language. Pick the keyboard for yours and every letter it needs is one click away.
č c with caron: A small V above the letter, also called a háček or wedge. Czech, Slovak, Slovenian, Croatian and Lithuanian use it for sounds like ch, sh and zh. Used in Czech, Slovak, Croatian, Slovenian, Lithuanian.
ç c with cedilla: A small hook under the letter. French and Portuguese ç sounds like s; Turkish ç and ş are ch and sh; Latvian and Romanian use it under other consonants. Used in French, Portuguese, Turkish, Catalan.
ć c with acute: A short stroke rising to the right. Marks stress in Spanish, vowel quality in French and Italian, and long vowels in Hungarian, Czech and Irish. Used in Polish, Croatian.
ĉ c with circumflex: A small inverted V. In French it usually marks a vowel that once had a following s (forêt, hôtel). Also used in Portuguese, Romanian, Welsh and Esperanto. Used in Esperanto.
ċ c with dot above: A single dot above the letter. Turkish dotted İ, Polish ż, Lithuanian ė, Maltese ċ, ġ, ż and traditional Irish lenition all use it. Used in Maltese.
How to type c with an accent on Windows
Alt codes
Hold Alt, type the code on the numeric keypad with Num Lock on, then release Alt. The number row above the letters does not work.
| Letter | Alt code | Letter | Alt code |
|---|---|---|---|
Alt+0231 | Alt+0199 |
č ć ĉ ċ ḉ have no classic Alt code. Use one of the methods below for those.
US-International keyboard (dead keys)
Switch to the United States-International layout (Settings → Time & Language → Language → English → Options → Add a keyboard). Then press the accent key, release it, and press the letter:
- ' then the letter gives ć
- Shift+6 (^) then the letter gives ĉ
- ' then c (for ç only) gives ç
- AltGr+, gives ç directly
Emoji and symbol panel
Press Win+., open the Symbols tab (Ω), choose Latin symbols and click the letter. Works in every app and needs no numpad. Character Map (search it in the Start menu) does the same for older versions of Windows.
How to type c with an accent on a Mac
Press and hold
Hold the C key for a second. A small menu appears with ç ć č. Press the number shown under the one you want, or click it. Hold Shift first for the capital.
Option dead keys
Press the Option combination, release it, then press the letter.
- Option+C gives ç, Option+Shift+C gives Ç
Character Viewer
Press Control+⌘+Space, type "c with" in the search box and double-click the letter. For carons, macrons, ogoneks and other marks that the US layout cannot type, add the ABC Extended input source (System Settings → Keyboard → Input Sources) which has dead keys for all of them.
How to type c with an accent on iPhone, iPad and Android
- Press and hold the C key.
- A pop-up shows ç ć č.
- Slide your finger onto the one you want and release.
For frequent use, save a shortcut: on iPhone go to Settings → General → Keyboard → Text Replacement; on Android open Gboard → Dictionary → Personal dictionary. Enter the accented letter as the phrase and a short code as the shortcut.
Word, Excel, PowerPoint and Google Docs
Microsoft Word
Word has built-in accent shortcuts. Press the combination, release it, then type the letter:
- Ctrl+,, c gives ç
For any form, type its Unicode hex code and press Alt+X: 010D → č, 00E7 → ç, 0107 → ć, 0109 → ĉ, and so on. You can also use Insert → Symbol → More Symbols with the subset set to Latin-1 Supplement or Latin Extended-A. AutoCorrect (File → Options → Proofing) can replace a code such as c~ with the letter automatically.
Excel and Google Sheets
Alt codes and paste work in cells. For a formula, use =UNICHAR(269) in Excel or =CHAR(269) in Google Sheets to get č.
Google Docs
Go to Insert → Special characters, then search "c with" or draw the letter in the sketch box. Docs also accepts Alt codes on Windows and Option dead keys on Mac. Under Tools → Preferences → Substitutions you can make Docs replace a code of your choosing with the accented letter.
C with accent in HTML, CSS and code
| Letter | HTML | Numeric | CSS | JavaScript | LaTeX |
|---|---|---|---|---|---|
| č | č | č | "\010D" | "\u010D" | \v{c} |
| ç | ç | ç | "\00E7" | "\u00E7" | \c{c} |
| ć | ć | ć | "\0107" | "\u0107" | \'{c} |
| ĉ | ĉ | ĉ | "\0109" | "\u0109" | \^{c} |
| ċ | ċ | ċ | "\010B" | "\u010B" | \.{c} |
| ḉ | ḉ | ḉ | "\1E09" | "\u1E09" | — |
Because these are ordinary Unicode characters, you can paste them straight into any UTF-8 file. The escapes only matter when the encoding is uncertain or you cannot type the letter.
Building any accent with combining marks
If you need a form Unicode does not precompose, or you are typing in an app that only has a plain c, type the letter and follow it with a combining mark. The mark sits on the previous character. Click any example to copy the two-character sequence.
In Word, type the letter, then the mark's hex code (for example 0301 for acute) and press Alt+X. On a Mac the Character Viewer lists them under Combining Diacritical Marks. Note that search engines and spell checkers treat a combined sequence differently from a precomposed letter, so prefer the precomposed form when one exists.
Troubleshooting
- The Alt code types something else. Add the leading zero (Alt+0241, not Alt+241) and use the numeric keypad with Num Lock on. Laptops without a numpad need Win + . instead.
- Press-and-hold shows nothing. On a Mac, key repeat may be enabled instead of the accent menu; run
defaults write -g ApplePressAndHoldEnabled -bool truein Terminal and log out. On phones, the letter may not be in your keyboard's language. - Wrong accent. č (caron) and ç (cedilla) look similar at small sizes but are different letters; a search for one will not find the other.
- A box or question mark appears after pasting. The font in that app lacks the glyph. Switch to a font with full Latin coverage such as Arial, Calibri, Noto Sans or Segoe UI.
Frequently asked questions
Is there an Alt code for č? +
Not a classic one. č is outside the Windows-1252 code page, so the reliable ways are copying it from this page, the Win + . symbol panel, or typing 010D then Alt + X in Word.
How do I type č with an accent on a Mac? +
Press and hold C or c on the keyboard and a menu of accented forms appears (ç ć č); press the number under the one you want. Or use the dead key: Option+C gives ç.
How do I type č on iPhone and Android? +
Press and hold the C key. A pop-up shows ç ć č. Slide your finger to the one you want and release. Android's Gboard works the same way.
Which languages use c with an accent? +
French (ç), Portuguese (ç), Polish (ć), Czech (č), Slovak (č), Turkish (ç), Croatian (č ć), Slovenian (č) and others.
How do I type č in Microsoft Word? +
Type 010D where you want the letter and press Alt + X; Word converts the code to č. Word also has a shortcut: Ctrl+,, c gives ç.
What is the HTML code for č? +
Use č or the numeric č. In CSS content use "\010D" and in JavaScript "\u010D".