Inventing my own writing system for English, VJScript
By the end of this post, you will be able to read and create your own English sentences in VJScript, a writing system I invented. As a sneak peak, here’s what it looks like:
Why invent your own writing system?
English spelling reform movements, as you may know, are nothing new. Figures ranging from Benjamin Franklin to the Mormons to Teddy Roosevelt have tried their hand at English spelling reform. Why did these people spend years of their lives and (in the case of Teddy Roosevelt) risk ridicule from the press to reform English spelling?
Because it sucks. As one English teacher put it, the language “seems like a bright and inestimable jewel wrapped up in a nasty rag unworthy to be touched… [the alphabet’s] actual distinct sounds are by far insufficient for the purposes of English itself – being scarcely half the number required.” As the quote (colorfully) illustrates, the number of letters in the English alphabet is not enough to represent all of its sounds. For example, we are told in school that English has five vowels (a, e, i, o, u, and sometimes y). But in reality, American English has 14 or 15, and other varieties have even more. Compare the “i” in “fight” to the “i” in “island”, or the “u” in “tube” to the “u” in “under.” Fig. 1: A vowel chart of standard California English. (Way more than 5 vowels!)
Introducing VJScript
VJScript fixes these issues with three main design principles: consonants and vowels are treated differently, no silent letters, and one-to-one correspondence between letters and sounds. VJScript does not have a single alphabet but rather two “buckets”, one for consonants and one for vowels.
Here's the vowel inventory: Vowel Example IPA (for linguists and nitpickers) EE beet /biːt/ I bit /bɪt/ EI bait /beɪt/ E bet /bɛt/ AE bat /bæt/ AW bought /bɔːt/ OA boat /boʊt/ Ø book /bʊk/ U but /bʌt/ AI bite /baɪt/ OW bout /baʊt/ OY boy /bɔɪ/ O boot /buːt/
And now the consonants: Consonant Example IPA (for linguists and nitpickers) K kite /kaɪt/ G good /ɡʊd/ NG sing /sɪŋ/ CH choose /tʃuːz/ J jump /dʒʌmp/ T type, better /taɪp/, /ˈbɛɾɚ/ TH think, this /θɪŋk/, /ðɪs/ D do /duː/ N nice /naɪs/ P pop /pɒp/ B bob /bɒb/ F fun /fʌn/ M mill /mɪl/ Y yes /jɛs/ R run /rʌn/ L look /lʊk/ V voice /vɔɪs/ S sit /sɪt/ Z zoo /zuː/ SH shine /ʃaɪn/ ZH measure /ˈmɛʒər/
The consonant and vowel inventories do not perfectly map one-to-one with English sounds. (But then again, neither does regular English spelling.) For example, the voiced “th” in “this” and the unvoiced “th” in “throw”, which are really different phonemes, are both represented with “TH”. Also, “CH” and “J” are given unique letters even though “CH” = “T” + “SH” and “J” = “D” + “ZH”.
How to write words in VJScript
To write a word, first split it up into its vowels and consonants. Take the word “alphabet” as an example. “Alphabet” = “AE” + “LF” + “U” + “B” + “E” + “T”. Notice that consonant clusters (“LF”) are written together and all silent letters are removed (there are none here).
Now for every vowel that appears after a consonant, write it on top of the consonant. Vowels at the beginning of words, like the “AE” in alphabet, remain unchanged. So “alphabet” becomes:
Since this is difficult to represent on computers, you can also use superscripts. For example, “alphabet” = AELFUBET. The advantage of separating vowels and consonants like this is that someone who has never seen the writing system before can guess the meaning of the sentence by scanning over the consonants, which remain largely unchanged. Recall the example from earlier:
Practice words
Take out a pen and paper and try writing the following words. See if your representation matches with the one I came up with:
1) "Apple" (hint: recall that "l" is not considered a vowel)
2) "Banana"
3) "Complex" (hint: when there's more than one consonant in a row, only the last one receives a vowel) The word "complex" is tricky because it contains the consonant cluster "PL." I never specified a rule for where to place vowels when there's a consonant cluster, so there are at least two ways to represent this word, the only difference being the location of the vowel E:
Some scrapped versions that look cool
This version used vowel diacritics that appear both above and below consonants:
One this one put all the vowel diacritics on top of the consonants. Also, I added a rule that all words ending in a consonant had to have a special marker (్) on top of the final letter:
Later on, I tried mixing in letters from the International Phonetic Alphabet (e.g. “ð” for the voiced “th”): (= “This is a sentence.”)
Conclusion
Considering that people can’t even agree on the right way to spell the word “gray”, English spelling is unlikely to ever undergo a comprehensive reform. After all, the language was never regulated by a central authority the way French and Spanish are (MLA doesn’t count), which makes launching a set of reforms like this very difficult. Still, I don’t feel that designing a writing system is a waste of time. It forced me to better understand how writing works in general, and it gave me an excuse to go on several Wikipedia rabbit holes.
Thanks for reading this post. If you get any good ideas from reading this post or find any mistakes, please reach out over email or leave a comment below.