Chuyển đến nội dung chính

How To Type Special French Characters

These are the special characters you will need:
Dot l'accent aigu é
Dot l'accent grave è, à, ù
Dot l'accent circonflexe â, ê, î, ô, û
Dot le tréma ë, ï
Dot la cédille ç

Special Characters on the PC
(with Windows 95, 98, NT)

Some word processors, such as Microsoft Word, allow you to input special characters by using Control key shortcut combinations. Press and hold the Control key (Ctrl on you keyboard), then press the special key indicated. Release the two keys, then press the key for the letter you want accented.
l'accent aigu Ctrl-' (Apostrophe)
l'acdfent grave Ctrl-` (Key just to the left of the 1 key)
l'accent circonflexe Ctrl-^ (Karrot or shift 6, you will have to press Ctrl, Shift and 6 at the same time)
le tréma Ctrl-: (Colon, you will have to press Ctrl, Shift and ; at the same time)
La cédille Ctrl-, (Comma)



Dotl'accent aigu

é Ctrl-' then e

Dotl'accent grave

è Ctrl-` then e
à Ctrl-` then a
ù Ctrl-` then u

Dotl'accent circonflexe

â Ctrl-^ then a
ê Ctrl-^ then e
î Ctrl-^ then i
ô Ctrl-^ then o
û Ctrl-^ then u

Dotle tréma

ë Ctrl-: then e
ï Ctrl-: then i

Dotla cédille

ç Ctrl-, then c

If your word processor does not allow you to use the special character shortcut keys, you will have to use the Alt key combinations. While holding down the Alt key, type the number combination on the keypad (make sure that the number lock is on).

To print a copy of this list for easy reference, click on the button below. A new page will appear that contains only the list of Alt key combinations. Simply click the print icon on your browser's tool bar.

L'accent aigu
é Alt-0233 É Alt-0201

L'accent grave
à Alt-0224 è Alt-0232 ù Alt-0249
À Alt-0192 È Alt-0200 Ù Alt-0217

L'accent circonflexe
â Alt-0226 ê Alt-0234 î Alt-0238 ô Alt-0244 û Alt-0251
 Alt-0194 Ê Alt-0202 Î Alt-0206 Ô Alt-0212 Û Alt-0219

Le tréma
ë Alt-0235 ï Alt-0239
Ë Alt-0203 Ï Alt-0207

La cédille
ç Alt-0231 Ç Alt-0199

The list of All-code combinations is found on the Character Map. From the Start menu. select Programs, then Accessories. Then click on Character Map. Click on the character you want and the code will appear on the lower right-hand corner of the Character map box.

Character map

Special Characters on the MAC

For the Mac you will have to use the Option key. While holding down the Option key, press the key indicated below for the correct accent, then press the letter you want to be accented. If the special character does not appear, check to be sure that the Caps Lock is off.
l'accent aigu Option-e
l'accent grave Option-` (key just left of the 1 key)
l'accent circonflexe Option-i
le tréma Option-u
la cédille Option-c only (you will not have to press C afterwards.

Dotl'accent aigu

é Option-e then e

Dotl'accent grave

è Option-` then e
à Option-` then a
ù Option-` then u

Dotl'accent circonflexe

â Option-i then a
ê Option-i then e
î Option-i then i
ô Option-i then o
û Option-i then u

Dotle tréma

ë Option-u then e
ï Option-u then i

Dotla cédille

ç Option-c only

Nhận xét

Bài đăng phổ biến từ blog này

Content Provider

Content Providers are again one of the fundamental building blocks of the Android Platform. So far, we have looked at Activities , Services , which are basic building blocks. We have also looked at intents , notifications and variations of the same . None of these have dealt with stored data. Content Provider brings us to the concept of how to deal with data stored in the Android mobile esp. if the data has to be shared across applications. Before we move on to shared data, let us understand the basics of data storage support provided by Android.  There are 4 ways we can store data: 1.     Preferences 2.     Files 3.     RDBMS (SQLite) 4.     Network Preferences – Preferences are used to store user preferences for a single application or across applications in a mobile. They are typically name-value pairs accessible to the context. Files – Files can be stored directly on to the mobile or to extend...