Pig Latin translator
Convert any English text into Pig Latin, the classic playground word game, using the standard rules. It is a fun way to scramble messages, set simple puzzles or show how words can be rearranged by a fixed phonetic rule — and it updates as you type.
How it works
The translator processes each word, keeping any leading or trailing punctuation in place, and applies two rules to the letters:
starts with a vowel (a, e, i, o, u): word + "way"
starts with consonant(s): move the leading consonant cluster
to the end, then add "ay"
For a consonant-starting word it moves every letter up to the first vowel. A word with no vowel is moved in full. Capitalisation is preserved.
Example: a full sentence
Translating “the quick brown fox jumps over the lazy dog”:
| English | Pig Latin | Rule applied |
|---|---|---|
| the | ethay | ”th” cluster moved |
| quick | ickquay | ”qu” cluster moved |
| brown | ownbray | ”br” cluster moved |
| fox | oxfay | ”f” moved |
| jumps | umpsjay | ”j” moved |
| over | overway | starts with vowel → “way” |
| the | ethay | ”th” cluster moved |
| lazy | azylây | ”l” moved |
| dog | ogday | ”d” moved |
Some more examples showing vowel-start and multi-consonant cluster handling:
| English | Pig Latin |
|---|---|
| apple | appleway |
| string | ingstray |
| school | oolschay |
| elephant | elephantway |
| rhythm | ythmrhay |
Notice that rhythm has no vowel (y is treated as a consonant), so the entire word is treated as the consonant cluster and moved before “ay”.
The history of Pig Latin
Pig Latin is a form of language game known as an “argot” or “cant,” used to obscure speech from outsiders. While its exact origins are unclear, it was well-documented in American English by the early 20th century and became widely popular with children in the mid-20th century. The name is a playful misnomer — it has nothing to do with the Latin language.
Similar games exist in other languages: Swedish has “Rövarspråket” (robber’s language), and French has “Verlan” (a reversal-based argot). Pig Latin is unique in using a consistent phonetic relocation rule rather than reversal or syllable insertion.
Why “y” is a consonant here
This translator treats y as a consonant when it appears at the start of a word, which is the most widely used convention. So “yellow” → “ellowyay” (move “y”, add “ay”). When y appears mid-word it stays in place as part of the remaining syllable. Some variants treat y as a vowel in all positions, producing different results — but the consonant-y convention is the most common in standard Pig Latin.
Everything runs in your browser — nothing is uploaded.