How to Type German letters ä, ö, ü and the ß on your Keyboard (2024)

Do you need to write texts in German? Do you copy the German Umlauts (the characters ä, ö, ü) and the Eszett (ß) from other text files or from websites? Stop it, right now!! 🙂 There’s a better way! And I’m definitely not talking about the weird number combinations you can never remember. You can type German letters right on your keyboard.

Let me introduce you to a little, but very powerful tool called “Autohotkey”. You can actually do so much more than just writing the special German letters (the Umlauts ä, ö, ü and the Eszett ß), but in this article we’ll focus that task. I will exactly tell you how to set up this little free tool and then copy & paste the little script I wrote for it. So you don’t have go through the tedious process of reading the documentation. I have done all of that for you!

Other (bad) methods to write German letters

You’re probably using one of these methods right now I used to do the same for the special Turkish characters that my German keyboard doesn’t have…

Number codes

It’s possible, though not very convenient to produce the German Umlauts and the ß by pressing the following keyboard combinations:

  • ä = alt + 0228
  • ö = alt + 0246
  • ü = alt + 0252
  • Ä = alt + 142
  • Ö = alt + 153
  • Ü = alt + 154
  • ß = alt + 0223

Simply hold (press and keep pressed) the ALT key, then type the number combinations on the number pad of your computer. Many smaller laptops don’t even have a number pad these days.

Change keyboard layout

You can also change your keyboard layout, which is explained in detail in this article. But this means that you will get other characters that the ones you see on you keyboard. I don’t recommend it either.

What is Autohotkey and how can I type German Umlauts with it?

AutoHotkey is a free, open-source scripting language for Windows thatallows users to easily create small to complex scripts for all kinds of tasks such as: form fillers, auto-clicking, macros, etc.

autohotkey.com
How to Type German letters ä, ö, ü and the ß on your Keyboard (1)

In other words, we can tell this tool that we want the German Umlaut “ä” if we hit a certain combination of keys (=hotkey), e.g. ALT +a, or if type a combination of characters (=hotstring), e.g. somethiing like “#a“.

Don’t let the sound of it (scripting language) scare you. It’s super easy and with my step-by-step guide and by copying my script, you will be writing German umlauted characters in no time! 🙂

Super quick guide for experts

This chapter is a very quick guide for people who are good with computers. If that’s not you, skip this chapter and read my step-to-step guide, starting from the next chapter onwards.

All you need to do is download and install Autohotkey, create a new script (right click anywhere, create new Autohotkey script file) and the past one of the code blocks below (depending on which hotkeys/hotstrings you’d like to use) underneath the content that’s already in the file. Then right-click the file and run the script. You can copy/move the file to the autostart folder. That’s it!

If something is not working, please read the rest of the article.

The installation of Autohotkey

1. Go the the Autohotkey website.

2. On the very first page, you will see the download option.

3. Make sure you select version v1.1 of Autohotkey and download it onto your computer.

How to Type German letters ä, ö, ü and the ß on your Keyboard (2)

4. Once it’s downloaded, double click on the AutoHotkey_XXXX_setup.exe file. (XXX = depends on the current version).

5. Follow the installation instructions.

6. You can simply choose the “Express Installation”.

7. Now click “Exit”. Congratulations! You’ve successfully installed Autohotkey!

Writing the script for the German Umlaute

Now all we have to do is write a simple script.

1. For this, just right-click on your desktop or in any other folder on your hard drive.

2. Choose “new”. You will see a new option called “AutoHotkey Script”. Click this new option and give the new file any title you want – e.g. “umlaute”.

How to Type German letters ä, ö, ü and the ß on your Keyboard (3)

3. Now right-click the file you’ve just created.

4. Click on “edit script”. The file probably contains several lines of content. Leave all of that. We will just add our script below that.

How to Type German letters ä, ö, ü and the ß on your Keyboard (4)

Recommended solution for you: ALT key + a

I’ve prepared a code for you that tells Autohotkey to produce the umlaut ä when you press ALT + ä, and ü when you press ALT + u etc. I think this is the most convenient solution.

HOWEVER, on some computer systems and in some software, the hotkey ALT + o might be already reserved for another action. If things don’t work well or if you want another solution (rather than ALT + a/o/u/s), I’ve included some alternatives in the next subchapter.

Copy and paste the code below from the grey box into your Autohotkey script file underneath the content that was already there. Make sure you select everything and don’t forget the very first or last character.

The code for the solution with the ALT key in combination with a/o/u/s:

!a::Send, äreturn!+a::Send, Äreturn!o::Send, öreturn!+o::Send, Öreturn!u::Send, üreturn!+u::Send, Üreturn!s::Send, ßreturn
How to Type German letters ä, ö, ü and the ß on your Keyboard (5)

Once you’ve copied the code, you can save and close the file. Now right-click the file and select “Run Script”.

How to Type German letters ä, ö, ü and the ß on your Keyboard (6)

That’s it! We’re done. You can open Word or any other word processing software or your browser and test if pressing your new hotkeys ALT +a, ALT +o, ALT +u and ALT +s produce the desired result. If everything is fine, you might want to move the script to the autostart folder (see below) to have it run automatically rather than running it manually every time you start your computer.

Especially ALT +o might not work (well) on some systems. If that’s the case, remove the code that you pasted into the script file and use one of the alternatives below.

Maybe these options don’t work for you and you don’t like pressing 3 keys at the same time? Alternative 3 might be interesting to you in that case as it uses string replacement rather than hotkeys.

Alternative 1: ALT key + CTRL key + a

The code for the solution with the ALT key + CTRL key in combination with a/o/u/s:

!^a::Send, äreturn!^+a::Send, Äreturn!^o::Send, öreturn!^+o::Send, Öreturn!^u::Send, üreturn!^+u::Send, Üreturn!^s::Send, ßreturn

Alternative 2: ALT key + WINDOWS key + a

The code for the solution with the ALT key + WINDOWS key in combination with a/o/u/s:

!^a::Send, äreturn!^+a::Send, Äreturn!^o::Send, öreturn!^+o::Send, Öreturn!^u::Send, üreturn!^+u::Send, Üreturn!^s::Send, ßreturn

Alternative 3: #a, #o etc.

Rather than a keyboard shortcut, you can also determine that a certain string should be replaced right after typing it. With this code, you have to type the “hash tag” symbol “#” with the letters a/o/u/s right after it. As soon as Autohotkey senses these characters together, the script “fires” and produces the German special letters. You can change the “#” symbol to something else, as well. Here is the code:

:*?:#a::ä:*?:#A::Ä:*?:#o::ö:*?:#O::Ö:*?:#u::ü:*?:#U::Ü:*?:#s::ß

Documentation for more options

You can check the Autohotkey website to find more alternatives for the hotkeys as well as for the hotstrings.

Autostart

If you only need to to type German Umlauts occasionally, you might want to start the script manually. If you want it to run automatically with your windows startup, you need to copy or move it to the autostart folder:

Press the windows key + r. In the little windows that appears, type or copy “shell:startup” without the quotation marks. Now all you have to do is move (or copy) your script file into the windows that has just appeared. From now on your script will start automatically.

Much more than just Umlauts

As you can imagine, you can do so much more with this tool than just producing German Umlaute. You can save a lot of time by setting up hotkey and/or hotstrings for information that you have to type very often: email openings, your telephone number, your (email) adress and much more.

I hope this was useful. Life is too short to copy ä,ö,ü and ß from other files and websites! 🙂

Don’t forget to leave a comment!

Share on TwitterShare on FacebookShare on LinkedInShare on E-mailShare on WhatsAppShare on Telegram
How to Type German letters ä, ö, ü and the ß on your Keyboard (2024)

FAQs

How to Type German letters ä, ö, ü and the ß on your Keyboard? ›

Number codes

How do I type ä/ö on an ä keyboard? ›

Ä: Hold down the "Alt" key and type "0196" on the regular number keys. Release the "Alt" key and the letter "Ä" should appear. Ö: Hold down the "Alt" key and type "0214" on the regular number keys. Release the "Alt" key and the letter "Ö" should appear.

How do you type German ß on keyboard? ›

On a Windows computer, hold down the Alt key and type 0223 on the numeric keypad, this will give you the lowercase letter ß. For the uppercase letter, hold down the Alt key, and then type +1e9e on the numeric keypad (use the regular keyboard for the letters) to get ẞ (this might require a registry change).

How do I add ß to my keyboard? ›

Turn on Num Lock and press ALT, keep it pressed and use the numbers 225, that gives the ß. An open mind doesn't mean that information is coming and going without leaving an impression.

How do you type special characters on a German keyboard? ›

German Character Codes
  1. ß = alt + 0223.
  2. ä = alt + 0228.
  3. ö = alt + 0246.
  4. ü = alt + 0252.
  5. Ä = alt + 142.
  6. Ö = alt + 153.
  7. Ü = alt + 154.

What is the Alt code for the umlauts? ›

Press NUM on your keyboard's number pad to activate the NUM lock. Then press ALT and keep it pressed while you type the code 132 on the number pad. 132 is the code for the letter ä, the a umlaut.

How to type German umlauts on a laptop? ›

Press and hold the Alt key and use the numeric keypad to enter 0252 (lowercase) or 0220 (uppercase). Release the Alt key and voila! Your umlaut appears. On Macs, you can press and hold “option + u” for lowercase “ü” or “option + U” for uppercase “Ü”.

How to write ü in English? ›

Ü is one of the 4 extra letters used in German. It can be replaced by using the digraph ue. In English language newspapers, ü is often written as "u", but this is not correct. Internet addresses are often written as "ue".

What are ä, ö, ü called? ›

German 'Umlaut'

The Umlaut is the two dots that sometimes appear above the vowels a, o and u to make ä, ö, and ü.

Does German use ß anymore? ›

Correspondingly, the infamous German subordinate clause conjunction dass used to be written as "daß" as well. The ß is also used after two consecutive vowels. So contrary to popular belief, the the ß hasn't disappeared from the language, its use has just been changed.

How do I activate special letters on my keyboard? ›

Press Alt + [the number code for the symbol or accented letter]. For example, Alt + 1 inserts ☺, while Alt + 0153 inserts the trademark ™. Here's a quick list of some of the more common accented letters and symbols. For more, refer to the ANSI character set page.

What is the alternative way to write ß? ›

The Eszett letter is used only in German, and can be typographically replaced with the double-s digraph ⟨ss⟩, if the ß-character is unavailable.

How do you type ß on a phone keyboard? ›

On a phone or tablet keyboard, hold your finger on the 's' key. You will get a display of alternatives, as below, including ß. Slide your finger to the ß and release. This works for other letters, for example hold down n and you get ñ.

How to type ß on keyboard? ›

For typing German ß (eszett), you can try to enter Alt+0223. Be careful not to forget the 0, because otherwise you may get ▀ when typing Alt+223.

How do you type ö on a keyboard? ›

Ö = Hold down the Control and Shift keys and type a : (colon), release the keys, hold down the Shift key and type an o.

What is the alt code for ß? ›

ÄALT-0196
öALT-0246
ÜALT-0220
üALT-0252
ßALT-0223
2 more rows

How do you type Ö with two dots in Word? ›

Under Windows, uppercase 'Ö' is typed with Alt+0214, and lowercase 'ö' is Alt+0246. You will need to type the digits on the numeric pad for this to work, and keep Alt held down while typing the digits. Alt-key codes can be used to type a variety of characters.

How do you type Ö Alt code? ›

Hold down alt key and type in the following for: ö: alt +148. Ö: alt +0214.

What is the Ö key on a keyboard? ›

Vowels with accents
Uppercase vowel with umlaut accentPress
ËAlt+0203
ÏAlt+0207
ÖAlt+0214
ÜAlt+0220
2 more rows

How do you type an umlaut on a keyboard combination? ›

How do I type a letter with an Umlaut on a windows keyboard?
You needYou press
ÄAltGr + Shift + a
öAltGr + o
ÖAltGr + Shift + o
üAltGr + u
4 more rows
Nov 5, 2021

Top Articles
Easy Stuffing Recipe - The Baker Chick
The Hairy Bikers' homity pie recipe
Ucsf Ilab
Botw Royal Guard
How To Check Your Rust Inventory Value? 🔫
Burkes Outlet Credit Card Sign In
Aarf Anchorage Alaska
Wharton County Busted Newspaper
2167+ Unique Pieces of Authentic Mid Century Modern Furniture In Stock - furniture - by dealer - sale - craigslist
Pooch Parlor Covington Tn
Myvetstoreonline.pharmacy
Missed Connections Dayton Ohio
Pga Us Open Leaderboard Espn
UHD-4K-Monitor mit 27 Zoll und VESA DisplayHDR™ 400 - 27UQ750-W | LG DE
Guide to Gold Farming in Guild Wars 2 - MMOPIXEL
Post-Tribune Obits
Pachuvum Athbutha Vilakkum Movie Download Telegram Link
Church Bingo Halls Near Me
Kitchen Exhaust Cleaning Companies Clearwater
Spanish Flower Names: 150+ Flowers in Spanish
Nissan Rogue Tire Size
Uitstekende taxi, matige gezinsauto: test Toyota Camry Hybrid – Autointernationaal.nl
Thermal Pants Mens Walmart
Chess Unblocked Games 66
Loss Payee And Lienholder Addresses And Contact Information Updated Daily Free List Bank Of America
Pair sentenced for May 2023 murder of Roger Driesel
Closest Dollar Tree Store To My Location
Eddie Messel Leaving 1011
Aunt Nettes Menu
Dicks Sporting Good Lincoln Ne
Stephanie Ruhle's Husband
Keanu Reeves cements his place in action genre with ‘John Wick: Chapter 4’
Dawson Myers Fairview Nc
Lkq Pull-A-Part
A-Z List of Common Medical Abbreviations, Acronyms & Definitions
Trailmaster Fahrwerk - nivatechnik.de
Www Muslima Com
Fanart Tv
Game Akin To Bingo Nyt
Family Violence Prevention Program - YWCA Wheeling
Strange World Showtimes Near Amc Hoffman Center 22
It Might Get Smoked Nyt
Dumb Money Showtimes Near Cinemark Century Mountain View 16
Pressconnects Obituaries Recent
Armored Beacon Feh
Sport Clip Hours
2026 Rankings Update: Tyran Stokes cements No. 1 status, Brandon McCoy, NBA legacies lead loaded SoCal class
Under One Shining Stone Another Lies
La Monja 2 Pelicula Completa Tokyvideo
Jeep Forum Cj
Varsity Competition Results 2022
Bookoo Garage Sales
Latest Posts
Article information

Author: Sen. Ignacio Ratke

Last Updated:

Views: 5926

Rating: 4.6 / 5 (76 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Sen. Ignacio Ratke

Birthday: 1999-05-27

Address: Apt. 171 8116 Bailey Via, Roberthaven, GA 58289

Phone: +2585395768220

Job: Lead Liaison

Hobby: Lockpicking, LARPing, Lego building, Lapidary, Macrame, Book restoration, Bodybuilding

Introduction: My name is Sen. Ignacio Ratke, I am a adventurous, zealous, outstanding, agreeable, precious, excited, gifted person who loves writing and wants to share my knowledge and understanding with you.