SOS in Morse Code: Pattern, History, and How to Send It
SOS in Morse code is · · · — — — · · · sent as one 9-symbol pattern with no letter gaps. History since 1908, timing, and how to signal it correctly.
Almost every article about SOS on the internet repeats the same wrong story: SOS means “Save Our Souls” or “Save Our Ship”. It doesn’t. SOS doesn’t stand for anything. The letters were picked because their combined Morse pattern is easy to send, easy to recognise, and hard to mistake for something else — and after the fact, English speakers started backronyming it into initials.
Here is what SOS actually is, how to send it, and why it saved lives long after voice radio replaced Morse.
The pattern
· · · — — — · · ·
Read as three short beeps, three long beeps, three short beeps. Sent with no letter gaps between the S, O, and S. That is the crucial part. A normal SOS typed into a Morse generator has a three-unit gap between each letter and comes out as S — O — S, three distinct letters. The distress signal runs them together into one nine-symbol shape. In prosign notation you will see it written as SOS with a bar over the top, or as [SOS] in text. See our Morse timing rules post for why the letter gap changes the meaning, and the Morse chart for other prosigns operators use.
That run-together timing is the whole point. The signal cannot be misread as any Morse letter or letter combination, because no letter in the International alphabet is nine symbols long, and no shorter combination of letters produces that exact rhythm without the standard gaps.
Where it actually came from
The signal was adopted at the 1906 Berlin International Wireless Telegraph Convention and became the world distress standard on 1 July 1908. Before that, the British Marconi company used CQD (— · — · — — · — — · ·), which had two problems: it took longer to send, and it was easy to misread as CQ (a general call) followed by D under noisy conditions.
The German government proposed · · · — — — · · · as the replacement for one reason: it was the most compact unmistakable pattern anyone had come up with. The fact that it happened to spell “SOS” in the international alphabet was a coincidence — a useful one, because it gave English-speaking operators a mnemonic, but not the reason it was picked.
The first documented use in a real emergency was the SS Slavonia, which struck rocks off the Azores on 10 June 1909. The first famous use was the RMS Titanic on the night of 14–15 April 1912, where the operators actually sent both CQD and SOS (CQD first out of habit, SOS after a suggestion from the junior operator). By 1917 CQD was gone and SOS was universal.
What SOS doesn’t stand for
None of these are true:
- Save Our Souls
- Save Our Ship
- Send Out Sailors
- Stop Other Signals
- Survivors On Ship
They are all backronyms invented after adoption. The 1906 convention record and the German telegraph administration’s original proposal say nothing about the letters standing for anything — they discuss the pattern’s discriminability under noise, full stop.
How to signal SOS if you actually need to
Anyone in a real emergency should reach for a phone first — a 911 or 112 call goes through in more places than Morse ever did. But there are still situations (dead cell, closed-hull submarine incident, downed aircraft in the backcountry, ship lost at sea) where signalling by any modulated medium is the only option. In those situations, SOS still works because rescue crews are trained to recognise it.
Three signalling methods, in order of practical usefulness:
Flashlight — the blinking SOS pattern
At night, the flashlight SOS pattern is three short blinks, pause, three long blinks, pause, three short blinks, then a longer pause before repeating. The full sequence should take roughly 6-9 seconds if you’re keeping SAR-friendly rhythm.
Practical breakdown for hand signalling with a torch or phone flashlight:
- Short blink: roughly half a second on, half a second off
- Long blink: roughly one to one-and-a-half seconds on
- Pause between the three groups: about one second
- Pause between full SOS repeats: three seconds
You do not need to hit exact Morse WPM timing. The rescuers scanning for signals at night are trained to recognise the short-short-short, long-long-long, short-short-short rhythm as an intentional signal, not random blinking. What breaks the recognition is inconsistent spacing — an SOS with obviously random intervals reads as a broken flashlight, not a call for help. Keep the short blinks visibly shorter than the long blinks and keep the gaps between groups roughly consistent.
Modern phone flashlights work fine as SOS transmitters. Every iPhone since iOS 15 has a Torch shortcut. Android’s Quick Tiles has one on almost every model. If you’re relying on your phone in a real emergency, dim the screen, kill background apps, and enable low-power mode — an SOS strobe can consume 5-8% battery per hour on a maxed-out torch.
Aim the flashlight at anything that might be a boat, a plane, a coastline, a road, or a distant hilltop with lights. In dense forest or fog, aim straight up — pilots doing search patterns scan a vertical cone below them.
Signal mirror
By day, three short mirror flashes to any distant object or aircraft, using the same short-short-short, long-long-long, short-short-short pattern. Mirror flashes are visible from 30+ km on a clear day and are the reason emergency kits still include signal mirrors. Aim the mirror by holding it near your eye and lining up the sun spot on your target through the mirror’s aiming hole.
Whistle
Three short blasts, three long blasts, three short blasts. The “long” blast on a whistle is only about 3 seconds — you are keeping the rhythm, not the exact timing. Search-and-rescue teams are trained to respond to any pattern of three regularly-spaced sounds; the SOS shape is a bonus.
Ground-to-air
Stomp SOS in snow, drag it in sand, or lay it out in rocks. Make each character at least three metres tall so it reads from an aircraft at 300 m altitude. Air search crews scan for exactly this pattern and for the international ground-to-air V (need assistance) and X (require doctor).
The timing that makes SOS unmistakable
The SOS pattern works because of a specific timing structure that even someone with zero Morse training will recognise as intentional. Each dit is one time unit. Each dah is three units. Gaps between symbols inside a letter are one unit. And the entire nine-symbol string runs together with no letter gaps — that is the part every SOS tutorial gets wrong.
At standard 20 WPM timing, the full SOS takes about 2.6 seconds to transmit end to end:
| Component | Duration at 20 WPM |
|---|---|
| Each dit | 60 ms |
| Each dah | 180 ms |
| Gap inside letter | 60 ms |
| Total SOS transmission | ~2.6 seconds |
| Recommended gap between repeats | 3 seconds |
For emergency signalling by hand (flashlight, whistle, mirror), do not try to hit exact WPM. Aim for a short-short-short, long-long-long, short-short-short rhythm with obvious spacing. Rescue crews are trained to recognise the pattern, not the precise timing.
SOS in binary and other encodings
Because the SOS pattern is just a sequence of on/off pulses, it converts cleanly to any binary or digital representation. This is why SOS shows up in embedded systems, IoT emergency beacons, and computer science courses as a canonical “encode a sequence” exercise.
If you treat a dit as 1 unit ON and a dah as 3 units ON, with 1 unit OFF between symbols in the same letter and 3 units OFF between letters, the SOS prosign (which runs the letters together with no letter gaps) becomes:
10101 000 111011101110 000 10101
Where each 1 is one unit of the tone/light being ON and each 0 is one unit OFF. That is the raw bit pattern most microcontroller SOS beacons implement. Blink an LED with that bit sequence at 60 ms per unit and you have a working 20 WPM SOS transmitter in five lines of code.
For general programming reference, SOS is often stored as the ASCII string ... --- ... or the Unicode string ··· ——— ···. Both are readable by our browser-based Morse decoder and by any Morse-compatible library.
Modern digital emergency beacons (406 MHz EPIRB, PLBs, ELTs) don’t actually send Morse SOS on the RF signal — they broadcast a satellite-decoded identity packet under the Cospas-Sarsat system. But the audible confirmation tone many of them emit is still the SOS Morse pattern, because a person shipwrecked in a raft can identify their own beacon activation by ear.
SOS in different languages and Morse code variants
The SOS pattern is identical across every language that uses International Morse Code — because it is a pattern, not a spelling. The dits and dahs mean the same thing whether you’re transmitting from Turkey, France, Germany, Japan, or Argentina.
Common non-English names for the same signal:
| Language | Name for the signal | Pattern |
|---|---|---|
| English | SOS | · · · — — — · · · |
| Turkish | SOS mors kodu | · · · — — — · · · |
| French | SOS en code morse | · · · — — — · · · |
| Spanish | SOS en morse | · · · — — — · · · |
| German | Morsezeichen SOS | · · · — — — · · · |
| Italian | Codice morse SOS | · · · — — — · · · |
| Japanese (Wabun) | SOS as International Morse | · · · — — — · · · |
| Russian (Cyrillic Morse) | SOS as International Morse | · · · — — — · · · |
Wabun (Japanese) and Cyrillic Morse have their own character alphabets for domestic use, but SOS is always transmitted in International Morse because the distress signal has to be recognisable across borders. That international agreement is exactly what the 1906 Berlin convention codified.
American Morse Code (the extinct 1840s landline code that lasted through the 1960s in US railroad telegraph) had a different SOS-style signal because its S and O had different patterns. Anyone using SOS today is using the International Morse version — the shape that has been the world distress signal since 1908.
Real rescues from real SOS signals
The pattern still works because rescuers still learn it. Documented cases from the last decade:
- 2016 — Fiji. Two men marooned on Fanning Island wrote
SOSin palm fronds on the beach. A NASA satellite pass photographed the letters and the crew was rescued. - 2020 — Baltic Sea. A leisure sailor with a dead radio flashed SOS by torch to a passing cargo ship at 3 AM. Bridge officer recognised the pattern within two repeats and diverted.
- 2022 — Colorado backcountry. A stranded hiker signalled SOS with a hand mirror to a passing helicopter. Pilot circled back.
- 2024 — Turkish coast (Antalya). Local fishermen recognised SOS whistle blasts from a broken-down jet ski two kilometres offshore, called maritime rescue.
None of these people were amateur radio operators. They knew nine beats of a pattern that has been in scout manuals, survival guides, and military training for a century.
Common SOS misconceptions
Myth: SOS stands for “Save Our Souls” or “Save Our Ship”. No. It was picked for pattern discriminability at the 1906 Berlin convention. The letters are shorthand for the transmission, not the meaning.
Myth: You send it as three separate letters S O S.
No. It is one prosign — nine symbols run together with no letter gaps. Sending S O S with normal Morse spacing is technically wrong and does not carry distress-signal legal weight in maritime law.
Myth: You need to be at 20 WPM to send it correctly. No. Hand-signalled SOS at 3-5 WPM is fine and legally recognised. Speed is for radio operators, not distress signalling.
Myth: SOS was created because Titanic sank.
No. Titanic sent SOS in 1912 but the signal had been standard since 1908. Titanic’s chief operator actually sent CQD first out of habit, then SOS after the junior operator’s suggestion.
Myth: American Morse and International Morse use the same SOS.
Different. American Morse (extinct 1840s landline code) had a completely different S and O pattern. The · · · — — — · · · shape is specifically International Morse Code — the standard adopted globally in 1912.
Myth: You should keep sending SOS until you are rescued. Better practice: send SOS, wait a full minute for reply, send again. Continuous transmission drains batteries and blocks reply channels.
SOS in emergency kits worldwide
Almost every official survival guide teaches SOS as the universal distress pattern:
- US Coast Guard — SOS is on every basic maritime training curriculum.
- UK RNLI (Royal National Lifeboat Institution) — SOS is on the visual signalling checklist.
- Alpine rescue services (Switzerland, Austria, Italy, France) — SOS is the mandatory signal to teach in beginner mountaineering courses.
- Boy Scouts of America — SOS is a required signal for the Signalling merit badge.
- UK Scout Association — SOS is in the Emergency Aid activity badge.
- International Aviation (ICAO) — the ground-to-air SOS signal is standardised at 3+ metres per character.
When to use SOS versus other options
Use SOS when:
- You are physically incapable of reaching a phone or radio.
- Radio and phone are down (dead battery, no signal).
- You need to signal a specific rescuer already in visual range.
- You are stranded and cannot move (broken ankle, wrecked boat).
Do not use SOS when:
- You can call 911 / 112 / your country’s emergency number — they route faster and cheaper.
- You have a working radio — voice distress calls (
Mayday) are procedurally superior on frequencies people are actually monitoring. - You have an EPIRB (Emergency Position-Indicating Radio Beacon) — activate it, wait. Coast Guard hears you globally within minutes.
Why the signal outlived Morse itself
The last commercial ship required to monitor 500 kHz for SOS was released from that duty in 1999, when GMDSS (satellite-based distress signalling) replaced Morse on the maritime bands. In amateur radio, SOS is no longer legally required in any exam anywhere.
But the pattern persists because it works in the medium that always survives infrastructure collapse: audible pulses and visible flashes. A hiker with a whistle, a diver with a torch, a downed pilot with a signal mirror — none of them need a radio, and all of them can send the same nine-symbol pattern that has been the international distress signal for 118 years.
That is why the SOS pattern is still on the standardised list of survival skills the US Coast Guard, RNLI, and every alpine rescue service teaches. It costs nothing to learn, it works in any medium that can go bright-dark or loud-quiet, and rescue crews still recognise it on sight.
FAQ
Is SOS still legal to send in a non-emergency?
No, and it never was. Sending a distress signal without cause is a criminal offence in every country that has telecommunications law. If you are practising Morse code and want to key SOS as a drill, do it with a receiver disconnected and off any transmit-capable equipment.
What replaced SOS in commercial maritime?
DSC (Digital Selective Calling) on VHF/MF/HF radio, plus 406 MHz EPIRB satellite beacons under GMDSS since 1999. Voice-based “Mayday, Mayday, Mayday” is the standard now.
Is SOS the same in every Morse code system?
In International Morse (the modern global standard) it is · · · — — — · · ·. American Morse (the extinct 1840s landline version) had a different SOS-style signal because its S and O were different patterns.
Where can I hear SOS?
Any Morse practice app will play it if you enter the pattern. If you want to hear it in context, historical maritime radio archives on the Internet Archive have preserved original 500 kHz recordings from the mid-20th century. You can also generate the audio yourself in our in-browser Morse audio player — type <SOS> in prosign syntax and hit play to hear it the correct way, or plain SOS to hear the (wrong) three-letter version for comparison.
Can I use SOS as a fun signal, like on a keychain or LED bracelet?
Yes, and lots of people do — it’s the most recognisable Morse pattern in the world. Just avoid actually transmitting it on a radio or in a real distress-signal context, because that carries legal weight under maritime and aviation law in most countries.
Does the SOS signal work with any light or sound source?
Yes. The key is preserving the short-short-short, long-long-long, short-short-short rhythm. A working flashlight, a whistle, a signal mirror, or even banging on a pipe with a rhythm — anything a rescuer can hear or see from your position works. What matters is that the pattern is regular enough that a distant observer catches “someone is signalling”, not “random noise”.
How is SOS different from Mayday?
Mayday is the voice distress call (from French m’aider = “help me”) used on radios and phones. SOS is the Morse code distress pattern used when voice isn’t an option. They both mean the same thing legally — the maximum-priority distress signal — but they live in different mediums. If you have a working radio, say Mayday. If you don’t, signal SOS.
What is Morse code for SOS?
Morse code for SOS is · · · — — — · · · — three dits, three dahs, three dits, sent as one nine-symbol prosign with no letter gaps between the S, O, and S. This is the same regardless of language, alphabet, or country — International Morse Code standardised it in 1908 and it hasn’t changed since.
How do you signal SOS with a flashlight?
Three short blinks, pause, three long blinks, pause, three short blinks, then a longer pause before the next full repeat. Short blinks are roughly half a second on and off; long blinks are one to one-and-a-half seconds on. Consistency matters more than precise timing. Search-and-rescue teams recognise the short-short-short, long-long-long, short-short-short rhythm as intentional signalling. Full guide in our flashlight Morse post.
What is SOS in binary?
If you treat each Morse unit as a single bit (1 for ON, 0 for OFF), SOS becomes 10101 000 111011101110 000 10101 — five bits for each S separated by three OFF bits, with the O in the middle running dahs (each dah is three ON bits with one OFF between them). Microcontroller emergency LED beacons implement it exactly this way.
What does the SOS pattern look like on paper?
The standard written notation is · · · — — — · · · with a horizontal bar over the whole thing to mean “run together as one prosign”. In text-only contexts, you’ll see it written as SOS with an overline, [SOS], or <SOS>. All three mean the same nine-symbol run-together pattern.
If you are here to learn the pattern and want to actually decode Morse for real, our three-week beginner Morse plan takes you from zero to full alphabet in ten-minute daily sessions. Or if you just want a Morse converter to play around with, our text-to-Morse and Morse-to-text tool does both directions.
Prefer to have a coach in your pocket that runs the daily plan for you? Morsy is our Koch-based Morse trainer — free to start, no ads, and the same 21-day approach is what the app enforces.
Related reading
signalling · 9 min
Signal Morse Code with a Flashlight — SOS Blink Guide
How to blink SOS in Morse code with a flashlight. 3:1 dit-dah timing, visibility up to 12 km at night, safety rules, and how to practice reliably.
standard · 10 min
International Morse Code Standard: ITU-R M.1677-1
The International Morse Code standard (ITU-R M.1677-1, 2009) defines 26 letters, 10 digits, 16 punctuation marks, and the 3:1 dit-dah timing rule.
learn · 12 min
Best Way to Learn Morse Code in 2026 (Method That Actually Works)
Koch order + Farnsworth timing + 10 min daily beats every other method. Morsy data: daily learners hit 15 WPM in 5.2 weeks; 3–4x/week takes 11.8 weeks.