The Spanish version of the starter phrase is “Hola, mundo.”
“Hello, world” is the tiny line that shows up in so many first lessons. When you want that line in Spanish, you’re not just swapping words. You’re picking punctuation, deciding on capitalization, and setting a tone for your project or class.
This page gives you the standard Spanish wording, how to say it out loud, and how to write it in a way that looks clean. You’ll see practical variations you might run into, plus fixes for the slips that make Spanish text feel “off.”
If you only need the translation, you can stop at one line. If you want it to look polished in a tutorial, a code sample, or a classroom handout, keep reading.
What “Hola, mundo” means
The usual Spanish version is Hola, mundo. It maps neatly onto the English phrase, but Spanish conventions shape how it’s written.
Word-by-word meaning
Hola is a familiar greeting. In plain terms, it’s the daily “hi” you’ll see in beginner Spanish.
Mundo means “world.” In this line, it’s a regular noun, so it stays lowercase: mundo. You’ll see a capital Mundo when someone means the planet as a proper name, but that’s a different idea.
Why there’s a comma
In Spanish, a comma often separates an interjection from what comes next. “Hola” is acting like a quick call-out before the main word. That’s why Hola, mundo tends to look more natural than Hola mundo in print.
If you’re teaching writing, that comma is a neat bonus lesson: punctuation isn’t decoration. It signals how the reader should hear the rhythm in their head.
Pronouncing it so it sounds right
Good news: this phrase is friendly to beginners. It uses common Spanish sounds and clear stress patterns.
Syllables and stress
Hola has two syllables: o-la. The stress falls on the first syllable: HO-la. The h is silent, so you start right on the “o.”
Mundo also has two syllables: mun-do. The stress lands on MUN-do. Put together, you get a steady beat: HO-la, MUN-do.
Sound traps to watch
- Don’t pronounce the “h.” If you hear yourself making an “h” sound, reset and begin with a clean vowel.
- Keep the vowels pure. Spanish o is usually a single sound, not the sliding “oh” common in English.
- Let the “d” stay soft. In many accents, the d between vowels is gentle, closer to the “th” in “this” than the hard English “d.”
Try saying it at half speed, then at normal speed. Record a short voice note and listen back. If it sounds clipped, relax the vowels and keep the rhythm even.
Writing it correctly in Spanish
Most of the time, you’ll want the neutral form: Hola, mundo. A few choices in punctuation and case make it look intentional in print.
Comma, capitalization, and quotes
Start with the comma. It separates the greeting from what follows and keeps the rhythm clear.
The Real Academia Española’s notes on uses of the comma list interjections and related structures as common spots where commas help the reader parse the line.
Need a dictionary definition for the greeting itself? The RAE entry for “hola” gives the standard sense as a familiar salutation.
Keep mundo lowercase unless you mean a proper name. If you quote the phrase, the comma stays inside: “Hola, mundo”. Angled quotes (« ») show up in books; straight quotes are fine online.
When you might add exclamation marks
Spanish can use an opening and closing exclamation mark. If you want a cheerful greeting, you can write ¡Hola, mundo!.
One thing to skip: random capitalization like HOLA, MUNDO. All caps can read like shouting, even in a code comment.
Saying hello world in Spanish in code demos
In code samples, you’re balancing language learning with clean formatting. The phrase can appear in program output, comments, headings, or file names. Each spot has its own quirks.
When the phrase appears as output, keep it as normal Spanish text. When it becomes an identifier, you’ll follow the naming rules of the language or tool you’re using.
Simple outputs in popular languages
Here are a few minimal prints you can paste into tutorials. Keep the comma unless your naming rules force you to drop punctuation.
Python
print("Hola, mundo")
JavaScript
console.log("Hola, mundo");
C
#include
int main(void) {
puts("Hola, mundo");
return 0;
}
HTML
Hola, mundo
If you’re teaching, have learners say it, then type it, and then paste it into code output.
If you’re naming a file or a function, punctuation may be awkward. In that case, dropping the comma is normal: hola_mundo or holaMundo. That’s a technical constraint, not a spelling change.
For screens and apps, stick with UTF-8 text. Spanish letters and punctuation display cleanly when your editor and page encoding match. If you see “”, your encoding settings don’t line up.
| Version | Where you’ll see it | Notes |
|---|---|---|
| Hola, mundo | Tutorial text, subtitles, worksheets | Neutral, common in running prose. |
| ¡Hola, mundo! | Posters, slides, playful UI copy | Shows Spanish opening and closing marks. |
| Hola Mundo | Headings, file names, project titles | Drops the comma for naming convenience. |
| Hola, Mundo | Occasional branding or headings | Capitalizes Mundo; feels like a title, not a plain noun. |
| Hola, mundo. | Full sentences in paragraphs | Add a period when it stands alone as a sentence. |
| “Hola, mundo” | Explanations about the phrase | Quotes help when you’re talking about the words, not greeting anyone. |
| Hola mundo | Identifiers, hashtags, URLs | Readable in technical contexts, even if it’s less natural in prose. |
| Hola a todos | Videos, lessons, live intros | Means “Hi all,” handy when you’re greeting people, not the “world.” |
Small choices that change the feel
The line can be plain, cheerful, or a little formal, depending on where it lands. You can tweak it without making it weird.
Pick punctuation that matches the setting
- Plain text in a lesson:Hola, mundo
- A friendly banner:¡Hola, mundo!
- A code comment:
// Hola, mundo
If you’re printing it on a page or a slide, a period can make it feel complete: Hola, mundo. If you’re using it as a label, skip the period.
Add a label without clutter
When a tutorial shows output, a small label can help readers track what they’re seeing:
Salida: Hola, mundo
In Spanish, Salida is a common way to tag program output. It’s short, clear, and it keeps the Spanish theme consistent.
Mistakes that make Spanish text look off
Most “hello world” Spanish slip-ups come from copying English habits into Spanish punctuation. These fixes are quick.
Common slips and clean fixes
- Writing Hola Mundo in a paragraph: Use Hola, mundo in running text.
- Forgetting the opening mark: If you choose exclamation marks, use both: ¡Hola, mundo!
- Random caps: Keep it in normal case unless a title style calls for caps.
- English comma spacing: In Spanish, there’s no space before the comma: Hola, mundo, not Hola , mundo.
- Mixing quotes and punctuation oddly: If the phrase is quoted as a unit, keep punctuation outside unless it belongs to the quoted text.
One practical tip: switch your input language to Spanish for a minute and type ¡Hola, mundo!. If that feels slow, keep a saved snippet so you can paste it cleanly.
| Check | What to do | Why readers notice |
|---|---|---|
| Comma placement | Use Hola, mundo in prose. | It matches Spanish rhythm and common printed style. |
| Capitalization | Keep mundo lowercase. | Lowercase reads like a normal noun, not a title. |
| Exclamation marks | If you use them, write ¡…!. | One-sided marks look unfinished in Spanish. |
| Spacing | No space before punctuation. | Extra spaces stand out on screen right away. |
| Quotes | Quote the phrase when you’re talking about it. | It separates explanation from a direct greeting. |
| Code identifiers | Drop punctuation: hola_mundo. |
Identifiers follow tool rules, not prose rules. |
| Encoding | Save files as UTF-8. | It prevents odd symbols in Spanish punctuation. |
Practice drills that stick
Memorizing one line is easy. Making it automatic on a blank page takes a bit of repetition. These mini drills are quick and don’t feel like homework.
Write it three ways
- Write the plain form: Hola, mundo.
- Write the cheerful form: ¡Hola, mundo!.
- Write a code identifier:
hola_mundo.
Say it with a steady beat
Clap once on HO and once on MUN. That tiny rhythm keeps your stress in the right spot.
Swap one word
Replace mundo with a noun you already know: Hola, amigos, Hola, clase, Hola, equipo. Keep the comma each time. You’re training a pattern, not just a phrase.
Using the phrase to test Spanish text in projects
Developers and writers use “hello world” lines as a quick smoke test. The Spanish version can do the same job, and it checks a few extra things on top of plain English.
Check punctuation and fonts
If your UI can show ¡Hola, mundo! with both marks, you’re in good shape for Spanish punctuation in general. If the opening mark turns into a blank box, your font set is missing characters.
Check sorting and search
Spanish text often includes accents and the letter ñ. Hola, mundo doesn’t use them, so add a second test word like mañana to your strings. That’s a fast way to spot broken search or bad collation rules.
Check line breaks
On narrow screens, text can wrap in ugly places. The comma in Hola, mundo is a handy marker: if it starts a new line by itself, your layout needs a tweak.
Next steps
If you want the standard Spanish line, use Hola, mundo. If you want a friendlier feel, use ¡Hola, mundo!. If you need a file name or identifier, drop punctuation and keep it readable.
Copy one version into your notes, then reuse it across your lessons and code samples. Consistency makes your material feel intentional, even when the content is beginner-level.
References & Sources
- Real Academia Española (RAE) – Diccionario de la lengua española.“hola | Definición”Confirms standard usage of “hola” as a common greeting.
- Real Academia Española (RAE) – Ortografía.“Usos de la coma (contextos de duda más frecuentes)”Explains comma use with interjections and related structures, backing the comma in “Hola, mundo”.