How this instrument works
Pig Latin is an English word game, not a real language, built by systematically rearranging the sounds in ordinary words rather than substituting new vocabulary. It has circulated in English-speaking playgrounds since at least the nineteenth century, prized for making ordinary sentences sound foreign while staying fully decodable by anyone who knows the two rules. There's no governing standards body for it the way there is for Unicode, so descriptions of "the" Pig Latin rules vary from source to source — this tool commits to one specific, fully-defined convention rather than leaving edge cases ambiguous.
The rule set here: a word starting with a vowel (a, e, i, o, u) simply gets "way" appended to the end — some other sources add "yay" instead for this case, but this tool always uses "way". A word starting with one or more consonants has that entire leading consonant cluster moved to the end of the word, followed by "ay" — so "green" becomes "eengray", not a partial-cluster variant. The two-letter combination "qu" is always treated as a single inseparable consonant unit within that cluster, so "quick" moves "qu" as a whole rather than splitting it, giving "ickquay". The letter y is always classified as a consonant here, never a vowel, even in positions where some speakers might treat it as vowel-like. Capitalization is reapplied rather than copied character for character: if the original word's first letter was uppercase, the output's first letter is capitalized too, and the rest of the output is lowercase regardless of how the original word was capitalized internally — so "PIG" translates to "Igpay", not "IGPAY".
- Type or paste a word or sentence — up to 2,000 characters.
- Each word is translated independently; spaces and punctuation stay exactly where they were.
- Read the Pig Latin result, with capitalization carried over from your original word.
- Try short vowel-initial words like "I" or "am" next to consonant clusters to see both rules at once.
Worked example — "I am the quick brown fox"
Feed the tool I am the quick brown fox and it returns Iway amway ethay ickquay ownbray oxfay — 6 words total, 2 vowel-initial and 4 consonant-initial, under one pair of rules. I and am are vowel-initial, so each just gets "way" tacked on whole (I becomes Iway, am becomes amway). The is consonant-initial with a 2-letter cluster, "th", which relocates to give ethay.
Quick is the case worth slowing down for: its leading consonants are q and u together, and because "qu" is always treated as one inseparable unit rather than splitting at the u, the whole "qu" moves to the end — ickquay, not the un-English-sounding "uickqay" you'd get by treating u as the word's first vowel. Brown and fox follow the plain consonant-cluster rule — "br" is a 2-letter cluster and "f" is a 1-letter cluster — each relocating in turn to give ownbray and oxfay.
Questions
Why does "quick" become "ickquay" instead of "uickqay"?
Because this tool treats the two-letter combination "qu" as a single, inseparable consonant unit rather than letting the u count as the word's first vowel. "Quick"'s leading cluster is therefore "qu" as a whole, which moves to the end followed by "ay", giving "ickquay". Splitting at the u instead would produce "uickqay", which doesn't match how "qu" is pronounced as a single sound in English and isn't the convention this tool follows.
Why does "I" become "Iway" and not "Iyay"?
Because this tool always appends "way" to vowel-initial words, not "yay". Both endings appear across different real-world descriptions of Pig Latin, and there's no single authoritative standard settling the question — so rather than mixing conventions or leaving it ambiguous, this tool picks "way" consistently for every vowel-initial word, including single-letter words like "I" and "a".
Is the letter y ever treated as a vowel by this tool?
No, never — y is always classified as a consonant here, regardless of where it falls in a word. Some Pig Latin descriptions treat y as vowel-like at the end of a word (in "happy", for instance), but this tool applies one fixed rule across every position for consistency and predictability, rather than trying to judge from context whether a given y is acting like a vowel or a consonant.
What happens to punctuation and spacing in a full sentence?
They pass through untouched. The tool finds each run of letters in your text and translates it independently, leaving everything else — spaces, commas, periods, numbers — exactly where it was. So a sentence like "Pig Latin, anyone?" keeps its comma and question mark in place around the translated words, rather than having punctuation swept along with the letters the way some other transforms on this site work.
What happens to a word with no vowels at all, like "rhythm"?
The whole word is treated as one leading consonant cluster and "ay" is appended to the end of it, giving "rhythmay". This is the simplest well-defined fallback for a genuinely vowel-free word, though it's an edge case: most real English words contain at least one of a, e, i, o, or u, so it comes up rarely in ordinary text.
Can this tool translate Pig Latin back into English?
No — it only translates English into Pig Latin, one direction only, with no built-in decoder. In principle a person can often decode Pig Latin by eye, stripping the trailing "ay" or "way" and moving the cluster back to the front, but doing that reliably by machine runs into real ambiguity (a word ending could be an original consonant cluster or coincidentally look like one), so this tool doesn't attempt automatic reverse translation.