<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=WKoA</id>
		<title>explain xkcd - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=WKoA"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/WKoA"/>
		<updated>2026-05-19T01:10:30Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3054:_Scream_Cipher&amp;diff=366917</id>
		<title>3054: Scream Cipher</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3054:_Scream_Cipher&amp;diff=366917"/>
				<updated>2025-02-25T17:15:52Z</updated>
		
		<summary type="html">&lt;p&gt;WKoA: Move community translators to example section (I think that's better?), organize them.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3054&lt;br /&gt;
| date      = February 21, 2025&lt;br /&gt;
| title     = Scream Cipher&lt;br /&gt;
| image     = scream_cipher_2x.png&lt;br /&gt;
| imagesize = 287x416px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = AAAAAA A ÃA̧AȂA̦ ǍÅÂÃĀÁȂ AAAAAAA!&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by A ÃA̧ȂÁAǍẢÂA̋ ȦÅĀ - Need to add more notes for the other cipher characters. Do NOT delete this tag too soon.}}&lt;br /&gt;
A {{w|Cipher}} is a method of encryption, where characters, or sometimes words, are substituted for other characters in a set pattern, allowing for arbitrary strings to be enciphered using it. The complexity and strength of ciphers varies, from {{w|one-time pads}} and (historically) {{w|enigma machine|Enigma}} as stronger and more complex, to {{w|substitution ciphers}} as some of the weakest and least complex, where each character is simply given a set different symbol to represent it in the cipher.&lt;br /&gt;
&lt;br /&gt;
This comic uses a substitution cipher, where all the letters of the English Alphabet are represented using the letter &amp;quot;A&amp;quot;, with different {{w|diacritical marks}} to define the differences. See details about the 25 marks in the [[#Trivia|Trivia section]] below. This kind of cipher is often used on a recreational basis by children or casual enthusiasts, the similarity of the letters increasing the obscurity of the content and the skill or technology required for use, but there is also significant impracticality, as not only are substitution ciphers the easiest to break, but also the similarities in the letters do make the cipher hard to read and easy to misread, and the detail in the diacritical marks makes it easy to draw the &amp;quot;A&amp;quot;s incorrectly or ambiguously, potentially leading to [[3003: Sandwich Helix|part of the message being lost]]. This was our experience in the comments section of this very article, where one person implemented translator functions alongside another person crafting a message that failed to translate. However, the logic behind the code is mostly visual similarity, and if attentive to connecting concepts between the Latin and scream cipher alphabet, it could be quickly learned and translated in a glance.&lt;br /&gt;
&lt;br /&gt;
It's named &amp;quot;Scream Cipher&amp;quot; (as a pun on {{w|stream cipher}}s, commonly used in computing) because the written form of a scream is often a long string of As, possibly with some other characters at the end (and often an exclamation point for emphasis), such as &amp;quot;Aaaaaah!&amp;quot; or &amp;quot;Aaaaaaagh!&amp;quot;. The name may or may not be a reference to IBM's {{w|Scream_(cipher)|Scream cipher}} published in 2002.&lt;br /&gt;
&lt;br /&gt;
In the comic, [[Cueball]] texts the ciphered version for the plaintext &amp;quot;HELLO&amp;quot;, and [[Megan]] responds with that for &amp;quot;HI&amp;quot;. The title text deciphers to &amp;quot;AAAAAA A SCARY MONSTER AAAAAAA!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Another recent comic featuring all &amp;quot;A&amp;quot;s was [[2957: A Crossword Puzzle]]. &lt;br /&gt;
&lt;br /&gt;
Diacritics was also the main theme in [[1647: Diacritics]] (of course) and was previously also mentioned in [[1209: Encoding]] and in [[1857: Emoji Movie]] where they have an important part of the pun, and is mentioned in one point of the list in [[1957: 2018 CVE List]].&lt;br /&gt;
&lt;br /&gt;
==Worked example==&lt;br /&gt;
&amp;lt;!-- If someone knows how to put this in one of those show/hide boxes, please do it --&amp;gt;&lt;br /&gt;
Say we want to encode &amp;quot;Scream&amp;quot; in the Scream Cipher. First we would need to split out word into the letters, so S, C, R, E, A, M. &lt;br /&gt;
&lt;br /&gt;
The first letter is S, so if we go to S in the table S is shown to become to Ã, C similarly becomes A̧, R becomes Ȃ, E corresponds to Á, A is the main letter so A is unchanged to A, and M becomes Ǎ. If we then write them again in order, we find SCREAM becomes ÃA̧ȂÁAǍ.&lt;br /&gt;
&lt;br /&gt;
To turn cipher text back into normal text, the process is repeated in reverse. To translate A̧ẢA̯A̰ÁȂ, we go to A̧ in the table and find A̧ becomes C. Ả similarly becomes I, A̯ becomes P, A̰ becomes H, Á becomes E, and Ȃ becomes R. If we write the letters in order, we see that A̧ẢA̯A̰ÁȂ becomes CIPHER.&lt;br /&gt;
&lt;br /&gt;
Text can be automatically translated using any of the following community implimentations:&lt;br /&gt;
* The first known translator hosted on [https://github.com/Reginald-Gillespie/ScreamCipher GitHub Pages].&lt;br /&gt;
* A more bare-bones [https://github.com/matthewpwatkins/scream-cipher/ implimentation] hosted on netlify.&lt;br /&gt;
* A terminal [https://github.com/klanderfri/ScreamCipher/ implimentation].&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[The top of the panel has the 26 letters of the alphabet written, each followed by a hyphen and the letter &amp;quot;A&amp;quot; with a unique diacritical mark for each. &amp;quot;A - A&amp;quot; is the only letter in the top row, and the only one where that A on the right side doesn't have a diacritic. The next 25 is sorted in a 5 by 5 grid, with the first five letters after A in the first column, then the next 5 in the second column and so on:]&lt;br /&gt;
:{|&lt;br /&gt;
|A - A&lt;br /&gt;
|-&lt;br /&gt;
|B - Ȧ&lt;br /&gt;
|G - A̋&lt;br /&gt;
|L - Ă&lt;br /&gt;
|Q - A̤&lt;br /&gt;
|V - À&lt;br /&gt;
|-&lt;br /&gt;
|C - A̧&lt;br /&gt;
|H - A̰&lt;br /&gt;
|M - Ǎ&lt;br /&gt;
|R - Ȃ&lt;br /&gt;
|W - Ȁ&lt;br /&gt;
|-&lt;br /&gt;
|D - A̱&lt;br /&gt;
|I - Ả&lt;br /&gt;
|N - Â&lt;br /&gt;
|S - Ã&lt;br /&gt;
|X - A̽&lt;br /&gt;
|-&lt;br /&gt;
|E - Á&lt;br /&gt;
|J - A̓&lt;br /&gt;
|O - Å&lt;br /&gt;
|T - Ā&lt;br /&gt;
|Y - A̦&lt;br /&gt;
|-&lt;br /&gt;
|F - A̮&lt;br /&gt;
|K - Ạ&lt;br /&gt;
|P - A̯&lt;br /&gt;
|U - Ä&lt;br /&gt;
|Z - Ⱥ&lt;br /&gt;
|}&lt;br /&gt;
:[Beneath these letters we see Cueball and Megan typing on their phones, Cueball with two hands and Megan with one hand, small lines indicating the movement of their hands. Cueball and Megan is turned towards each other but with more separation than if they were engaged in normal discussion. They both look down at their phones not towards each other. The text they type is shown above their phone with a line starting in a starburst at the top of their phones going up the to the text.]&lt;br /&gt;
:Cueball's phone: A̰ÁĂĂÅ&lt;br /&gt;
:Megan's phone: A̰Ả&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel:]&lt;br /&gt;
:In the '''''Scream Cipher''''', messages consist of all As, with different letters distinguished using diacritics.&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
The {{w|Unicode}} names of the characters in the cipher are as follows:&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=2 | Input !! colspan=3 | Substitution&lt;br /&gt;
|-&lt;br /&gt;
! Plain !! Unicode description !! Cipher !! Unicode description(s) !! Notes&lt;br /&gt;
|-&lt;br /&gt;
| A || U+0041 LATIN CAPITAL LETTER A || {{w|A}} || '''U+0041 LATIN CAPITAL LETTER A || Unadorned base character&lt;br /&gt;
|-&lt;br /&gt;
| B || U+0042 LATIN CAPITAL LETTER B || {{w|Ȧ}} || '''U+0226 LATIN CAPITAL LETTER A WITH {{w|Dot (diacritic)|DOT}} ABOVE || A with one dot over it, which can indicate a single change in math and science. Phonetic symbol for low central vowel.&lt;br /&gt;
|-&lt;br /&gt;
| C || U+0043 LATIN CAPITAL LETTER C || A̧ || U+0041 LATIN CAPITAL LETTER A, '''U+0327 {{w|Combining Diacritical Marks|COMBINING}} {{w|Cedilla|CEDILLA}}''' || Cedilla is often attached to a 'c', as in &amp;quot;français&amp;quot;, as well as starting with 'c' itself. Appears similar to Ą (U+0104, A with ogonek) used in many language to denote a nasal a sound and in Polish to denote a nasal o sound, however the two can be distinguished by the direction of the diacritic.&lt;br /&gt;
|-&lt;br /&gt;
| D || U+0044 LATIN CAPITAL LETTER D || A̱ || U+0041 LATIN CAPITAL LETTER A, '''U+0331 COMBINING MACRON BELOW''' || Some see the lower bar as similar to the lower edge of the D.&lt;br /&gt;
|-&lt;br /&gt;
| E || U+0045 LATIN CAPITAL LETTER E || {{w|Á}} || '''U+00C1 LATIN CAPITAL LETTER A WITH ACUTE || Many words have an acute e, as in &amp;quot;fiancé&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| F || U+0046 LATIN CAPITAL LETTER F || A̮ || U+0041 LATIN CAPITAL LETTER A, '''U+032E COMBINING BREVE BELOW''' || The breve adds a second line to the A, much like how an F has two lines.&lt;br /&gt;
|-&lt;br /&gt;
| G || U+0047 LATIN CAPITAL LETTER G || A̋ || U+0041 LATIN CAPITAL LETTER A, '''U+030B COMBINING {{w|Double acute accent|DOUBLE ACUTE}} ACCENT''' || Adds two acutes to a letter&amp;lt;!-- this isn't an explanation as to &amp;quot;why for 'G'?&amp;quot;, unlike others, but doing what I think is right to add...--&amp;gt;.&lt;br /&gt;
|-&lt;br /&gt;
| H || U+0048 LATIN CAPITAL LETTER H || A̰ || U+0041 LATIN CAPITAL LETTER A, '''U+0330 COMBINING TILDE BELOW''' || The low tilde has horizontal ink in the middle that moves vertical toward the sides, like an H.&lt;br /&gt;
|-&lt;br /&gt;
| I || U+0049 LATIN CAPITAL LETTER I || {{w|Ả}} || '''U+1EA2 LATIN CAPITAL LETTER A WITH HOOK ABOVE || The hook almost looks like half of a circle, and the lowercase letter I (i) has a circular shape (known as a tittle) above it.&lt;br /&gt;
|-&lt;br /&gt;
| J || U+004A LATIN CAPITAL LETTER J || A̓ || U+0041 LATIN CAPITAL LETTER A, '''U+0313 COMBINING COMMA ABOVE''' || The comma symbol looks like a small letter 'J' in some fonts&lt;br /&gt;
|-&lt;br /&gt;
| K || U+004B LATIN CAPITAL LETTER K || Ạ || '''U+1EA0 LATIN CAPITAL LETTER A WITH DOT BELOW || &amp;lt;!--{{w|Dot (diacritic)}} is already linked, with DOT ABOVE--&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| L || U+004C LATIN CAPITAL LETTER L || {{w|Ă}} || '''U+0102 LATIN CAPITAL LETTER A WITH {{w|Breve|BREVE}} ||&lt;br /&gt;
|-&lt;br /&gt;
| M || U+004D LATIN CAPITAL LETTER M || Ǎ || '''U+01CD LATIN CAPITAL LETTER A WITH {{w|caron|CARON}} || The top-centered caron is the same shape as the top center of the M.&lt;br /&gt;
|-&lt;br /&gt;
| N || U+004E LATIN CAPITAL LETTER N || {{w|Â}} || '''U+00C2 LATIN CAPITAL LETTER A WITH CIRCUMFLEX || The lowercase letter 'n' also looks like a circumflex in some scripts. The circumflex peak mirrors the peak at the top left of the N.&lt;br /&gt;
|-&lt;br /&gt;
| O || U+004F LATIN CAPITAL LETTER O || {{w|Å}} || '''U+00C5 LATIN CAPITAL LETTER A WITH RING ABOVE || The symbol contains the letter 'O'. In Scandinavian languages like Swedish, this combination of 'O' and 'A' is a letter unto itself, mostly used in words where a long 'a' sound has acquired a more 'o'-like sound.&lt;br /&gt;
|-&lt;br /&gt;
| P || U+0050 LATIN CAPITAL LETTER P || A̯ || U+0041 LATIN CAPITAL LETTER A, '''U+032F COMBINING INVERTED BREVE BELOW''' || Refer to R: P also has a curve at the top center, but is encoded with one below. &lt;br /&gt;
|-&lt;br /&gt;
| Q || U+0051 LATIN CAPITAL LETTER Q || A̤ || U+0041 LATIN CAPITAL LETTER A, '''U+0324 COMBINING DIAERESIS BELOW''' || The two dots below the baseline reflect the two times Randall's Q touch the baseline. In the Orthographies of Spanish, Catalan, French and Galician, the grapheme 'qu' normally represents a single sound, before vowels 'e' and 'i'. In the few exceptions where the 'u' is pronounced, a diaeresis is added to it.&lt;br /&gt;
|-&lt;br /&gt;
| R || U+0052 LATIN CAPITAL LETTER R || Ȃ || '''U+0202 LATIN CAPITAL LETTER A WITH {{w|Inverted breve|INVERTED BREVE}} ||&lt;br /&gt;
The inverted centered top curve mirrors the curve at the top center of an R.&lt;br /&gt;
|-&lt;br /&gt;
| S || U+0053 LATIN CAPITAL LETTER S || {{w|Ã}} || '''U+00C3 LATIN CAPITAL LETTER A WITH TILDE || Tilde looks like a sideways 'S'.&lt;br /&gt;
|-&lt;br /&gt;
| T || U+0054 LATIN CAPITAL LETTER T || {{w|Ā}} || '''U+0100 LATIN CAPITAL LETTER A WITH {{w|Macron (diacritic)|MACRON}} || The macron looks like the top horizontal line in the letter 'T'&lt;br /&gt;
|-&lt;br /&gt;
| U || U+0055 LATIN CAPITAL LETTER U || {{w|Ä}} || '''U+00C4 LATIN CAPITAL LETTER A WITH DIAERESIS || Many German and Swedish words have a 'Ä', as in &amp;quot;{{w|Die_Ärzte|Ärzte}}&amp;quot;. Similar to the encoding for Q, the two top dots mirror the two times the script of U reaches the top line.&lt;br /&gt;
|-&lt;br /&gt;
| V || U+0056 LATIN CAPITAL LETTER V || {{w|À}} || '''U+00C0 LATIN CAPITAL LETTER A WITH GRAVE || Grave has the letter 'V' in it, as well as being half of its shape.&lt;br /&gt;
|-&lt;br /&gt;
| W || U+0057 LATIN CAPITAL LETTER W || Ȁ || '''U+0200 LATIN CAPITAL LETTER A WITH {{w|Double grave accent|DOUBLE GRAVE}} || The letter 'W' is visually two copies of the letter 'V'&lt;br /&gt;
|-&lt;br /&gt;
| X || U+0058 LATIN CAPITAL LETTER X || A̽ || U+0041 LATIN CAPITAL LETTER A, '''U+033D COMBINING X ABOVE''' || The symbol contains the letter 'X'.&lt;br /&gt;
|-&lt;br /&gt;
| Y || U+0059 LATIN CAPITAL LETTER Y || A̦ || U+0041 LATIN CAPITAL LETTER A, '''U+0326 COMBINING COMMA BELOW''' || Comma is used con conjuntion as the letter 'Y' in some languages like Spanish&lt;br /&gt;
|-&lt;br /&gt;
| Z || U+005A LATIN CAPITAL LETTER Z || {{w|Saanich_dialect#Writing_system|Ⱥ}}&amp;lt;!--best link available?--&amp;gt; || '''U+023A LATIN CAPITAL LETTER A WITH STROKE || The strikethrough the letter A resembles the diagonal stroke of a capital &amp;quot;Z&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:Cryptography]]&lt;br /&gt;
[[Category:Unicode]]&lt;br /&gt;
[[Category:Smartphones]]&lt;/div&gt;</summary>
		<author><name>WKoA</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3054:_Scream_Cipher&amp;diff=366408</id>
		<title>3054: Scream Cipher</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3054:_Scream_Cipher&amp;diff=366408"/>
				<updated>2025-02-22T15:13:24Z</updated>
		
		<summary type="html">&lt;p&gt;WKoA: Remove duplicate line I added&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3054&lt;br /&gt;
| date      = February 21, 2025&lt;br /&gt;
| title     = Scream Cipher&lt;br /&gt;
| image     = scream_cipher_2x.png&lt;br /&gt;
| imagesize = 287x416px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = AAAAAA A ÃA̧AȂA̦ ǍÅÂÃĀÁȂ AAAAAAA!&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by A ÃA̧ȂÁAǍẢÂA̋ ȦÅĀ - Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
A {{w|Cipher}} is a method of encryption, where characters or sometimes words are substituted for other characters in a set pattern, allowing for arbitrary strings to be enciphered using it. The complexity and strength of ciphers varies, from {{w|one-time pads}} and (historically) {{w|enigma machine|Enigma}} as stronger and more complex, to {{w|substitution ciphers}} as some of the weakest and least complex, where each character is simply given a set different symbol to represent it in the cipher.&lt;br /&gt;
&lt;br /&gt;
This comic uses a substitution cipher, where all the letters of the English Alphabet are represented using the letter &amp;quot;A&amp;quot;, with different {{w|diacritical marks}} to define the differences. This kind of cipher is often used on a recreational basis by children or casual enthusiasts, the similarity of the letters increasing the obcurity of the content and the skill or technology required for use, but there is also significant impracticality, as not only are substitution ciphers the easiest to break, but also the similarities in the letters do make the cipher hard to read and easy to misread, and the detail in the diacritical marks makes it easy to draw the &amp;quot;A&amp;quot;s incorrectly or ambiguously, potentially leading to [[3003: Sandwich Helix|part of the message being lost]]. This was our experience in the comments section of this very article, where one person implemented translator functions alongside another person crafting a message that failed to translate. However, the logic behind the code is mostly visual similarity, and if attentive to connecting concepts between the American and scream cipher alphabet, it could be quickly learned and translated in a glance.&lt;br /&gt;
&lt;br /&gt;
It's named &amp;quot;Scream Cipher&amp;quot; (as a pun on {{w|stream cipher}}s, commonly used in computing) because the written form of a scream is a long string of As, possibly with some other characters at the end (and often an exclamation point for emphasis), such as &amp;quot;Aaaaaah!&amp;quot; or &amp;quot;Aaaaaaagh!&amp;quot;. The name may or may not be a reference to IBM's {{w|Scream_(cipher)|Scream cipher}} published in 2002.&lt;br /&gt;
&lt;br /&gt;
In the comic, [[Cueball]] texts the ciphered version for the plaintext &amp;quot;HELLO&amp;quot;, and [[Megan]] responds with that for &amp;quot;HI&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The title text deciphers to &amp;quot;AAAAAA A SCARY MONSTER AAAAAAA!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
You can translate text to and from Scream Cipher using [https://github.com/matthewpwatkins/scream-cipher/ the Scream Cipher Translator] or [https://github.com/Reginald-Gillespie/ScreamCipher an alternative] with additional features.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Another recent comic featuring all &amp;quot;A&amp;quot;s was [[2957: A Crossword Puzzle]].&lt;br /&gt;
&lt;br /&gt;
==Worked example==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If someone knows how to put this in one of those show/hide boxes, please do it --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Say we want to encode &amp;quot;Scream&amp;quot; in the Scream Cipher. First we would need to split out word into the letters, so S, C, R, E, A, M. &lt;br /&gt;
&lt;br /&gt;
The first letter is S, so if we go to S in the table S is shown to become to Ã, C similarly becomes A̧, R becomes Ȃ, E corresponds to Á, A is the main letter so A is unchanged to A, and M becomes Ǎ. If we then write them again in order, we find SCREAM becomes ÃA̧ȂÁAǍ.&lt;br /&gt;
&lt;br /&gt;
To turn cipher text back into normal text, the process is repeated in reverse. To translate A̧ẢA̯A̰ÁȂ, we go to A̧ in the table and find A̧ becomes C. Ả similarly becomes I, A̯ becomes P, A̰ becomes H, Á becomes E, and Ȃ becomes R. If we write the letters in order, we see that A̧ẢA̯A̰ÁȂ becomes CIPHER.&lt;br /&gt;
&lt;br /&gt;
==Table==&lt;br /&gt;
&lt;br /&gt;
The {{w|Unicode}} names of the characters in the cipher are as follows:&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=2 | Input !! colspan=3 | Substitution&lt;br /&gt;
|-&lt;br /&gt;
! Plain !! Unicode description !! Cipher !! Unicode description(s) !! Usage note&lt;br /&gt;
|-&lt;br /&gt;
| A || U+0041 LATIN CAPITAL LETTER A || A || '''U+0041 LATIN CAPITAL LETTER A || Unadorned base character&lt;br /&gt;
|-&lt;br /&gt;
| B || U+0042 LATIN CAPITAL LETTER B || Ȧ || '''U+0226 LATIN CAPITAL LETTER A WITH DOT ABOVE || Phonetic symbol for low central vowel&lt;br /&gt;
|-&lt;br /&gt;
| C || U+0043 LATIN CAPITAL LETTER C || A̧ || U+0041 LATIN CAPITAL LETTER A, '''U+0327 COMBINING CEDILLA''' || Cedille is often attached to a 'c', as in &amp;quot;français&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| D || U+0044 LATIN CAPITAL LETTER D || A̱ || U+0041 LATIN CAPITAL LETTER A, '''U+0331 COMBINING MACRON BELOW''' ||&lt;br /&gt;
|-&lt;br /&gt;
| E || U+0045 LATIN CAPITAL LETTER E || Á || '''U+00C1 LATIN CAPITAL LETTER A WITH ACUTE || Many words have an acute e, as in &amp;quot;fiancé&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| F || U+0046 LATIN CAPITAL LETTER F || A̮ || U+0041 LATIN CAPITAL LETTER A, '''U+032E COMBINING BREVE BELOW''' ||&lt;br /&gt;
|-&lt;br /&gt;
| G || U+0047 LATIN CAPITAL LETTER G || A̋ || U+0041 LATIN CAPITAL LETTER A, '''U+030B COMBINING DOUBLE ACUTE ACCENT''' ||&lt;br /&gt;
|-&lt;br /&gt;
| H || U+0048 LATIN CAPITAL LETTER H || A̰ || U+0041 LATIN CAPITAL LETTER A, '''U+0330 COMBINING TILDE BELOW''' ||&lt;br /&gt;
|-&lt;br /&gt;
| I || U+0049 LATIN CAPITAL LETTER I || Ả || '''U+1EA2 LATIN CAPITAL LETTER A WITH HOOK ABOVE ||&lt;br /&gt;
|-&lt;br /&gt;
| J || U+004A LATIN CAPITAL LETTER J || A̓ || U+0041 LATIN CAPITAL LETTER A, '''U+0313 COMBINING COMMA ABOVE''' || The comma symbol looks like a small letter 'J' in some fonts&lt;br /&gt;
|-&lt;br /&gt;
| K || U+004B LATIN CAPITAL LETTER K || Ạ || '''U+1EA0 LATIN CAPITAL LETTER A WITH DOT BELOW ||&lt;br /&gt;
|-&lt;br /&gt;
| L || U+004C LATIN CAPITAL LETTER L || Ă || '''U+0102 LATIN CAPITAL LETTER A WITH BREVE ||&lt;br /&gt;
|-&lt;br /&gt;
| M || U+004D LATIN CAPITAL LETTER M || Ǎ || '''U+01CD LATIN CAPITAL LETTER A WITH CARON ||&lt;br /&gt;
|-&lt;br /&gt;
| N || U+004E LATIN CAPITAL LETTER N || Â || '''U+00C2 LATIN CAPITAL LETTER A WITH CIRCUMFLEX || The letter 'n' looks like a circumflex in some fonts&lt;br /&gt;
|-&lt;br /&gt;
| O || U+004F LATIN CAPITAL LETTER O || Å || '''U+00C5 LATIN CAPITAL LETTER A WITH RING ABOVE || The symbol contains the letter 'O'. In Scandinavian languages like Swedish, this *is* the letter 'O' (a written 'O' may be closer to a 'U', but not always)&lt;br /&gt;
|-&lt;br /&gt;
| P || U+0050 LATIN CAPITAL LETTER P || A̯ || U+0041 LATIN CAPITAL LETTER A, '''U+032F COMBINING INVERTED BREVE BELOW''' ||&lt;br /&gt;
|-&lt;br /&gt;
| Q || U+0051 LATIN CAPITAL LETTER Q || A̤ || U+0041 LATIN CAPITAL LETTER A, '''U+0324 COMBINING DIAERESIS BELOW''' || In the Orthographies of Spanish, Catalan, French and Galician, the grapheme 'qu' normally represents a single sound, before vowels 'e' and 'i'. In the few exceptions where the 'u' is pronounced, a diaeresis is added to it.&lt;br /&gt;
|-&lt;br /&gt;
| R || U+0052 LATIN CAPITAL LETTER R || Ȃ || '''U+0202 LATIN CAPITAL LETTER A WITH INVERTED BREVE ||&lt;br /&gt;
|-&lt;br /&gt;
| S || U+0053 LATIN CAPITAL LETTER S || Ã || '''U+00C3 LATIN CAPITAL LETTER A WITH TILDE || Tilde looks like a sideways 'S'.&lt;br /&gt;
|-&lt;br /&gt;
| T || U+0054 LATIN CAPITAL LETTER T || Ā || '''U+0100 LATIN CAPITAL LETTER A WITH MACRON || The macron looks like the top horizontal line in the letter 'T'&lt;br /&gt;
|-&lt;br /&gt;
| U || U+0055 LATIN CAPITAL LETTER U || Ä || '''U+00C4 LATIN CAPITAL LETTER A WITH DIAERESIS || Many German words have a 'ü', as in &amp;quot;[[w|Fahrvergnügen]]&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| V || U+0056 LATIN CAPITAL LETTER V || À || '''U+00C0 LATIN CAPITAL LETTER A WITH GRAVE || Grave has the letter 'V' in it&lt;br /&gt;
|-&lt;br /&gt;
| W || U+0057 LATIN CAPITAL LETTER W || Ȁ || '''U+0200 LATIN CAPITAL LETTER A WITH DOUBLE GRAVE || The letter 'W' is visually two copies of the letter 'V'&lt;br /&gt;
|-&lt;br /&gt;
| X || U+0058 LATIN CAPITAL LETTER X || A̽ || U+0041 LATIN CAPITAL LETTER A, '''U+033D COMBINING X ABOVE''' || The symbol contains the letter 'X'.&lt;br /&gt;
|-&lt;br /&gt;
| Y || U+0059 LATIN CAPITAL LETTER Y || A̦ || U+0041 LATIN CAPITAL LETTER A, '''U+0326 COMBINING COMMA BELOW''' || Comma is used con conjuntion as the letter 'Y' in some languages like Spanish&lt;br /&gt;
|-&lt;br /&gt;
| Z || U+005A LATIN CAPITAL LETTER Z || Ⱥ || '''U+023A LATIN CAPITAL LETTER A WITH STROKE || The strikethrough the letter A resembles the diagonal stroke of a capital &amp;quot;Z&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
:[Top of the panel has 26 letters of the alphabet, each followed by a hyphen and the letter &amp;quot;A&amp;quot; with a unique diacritical mark for each. &amp;quot;A - A&amp;quot; at the top is an exception, where the latter doesn't have a diacritic.]&lt;br /&gt;
:{|&lt;br /&gt;
|A - A&lt;br /&gt;
|-&lt;br /&gt;
|B - Ȧ&lt;br /&gt;
|G - A̋&lt;br /&gt;
|L - Ă&lt;br /&gt;
|Q - A̤&lt;br /&gt;
|V - À&lt;br /&gt;
|-&lt;br /&gt;
|C - A̧&lt;br /&gt;
|H - A̰&lt;br /&gt;
|M - Ǎ&lt;br /&gt;
|R - Ȃ&lt;br /&gt;
|W - Ȁ&lt;br /&gt;
|-&lt;br /&gt;
|D - A̱&lt;br /&gt;
|I - Ả&lt;br /&gt;
|N - Â&lt;br /&gt;
|S - Ã&lt;br /&gt;
|X - A̽&lt;br /&gt;
|-&lt;br /&gt;
|E - Á&lt;br /&gt;
|J - A̓&lt;br /&gt;
|O - Å&lt;br /&gt;
|T - Ā&lt;br /&gt;
|Y - A̦&lt;br /&gt;
|-&lt;br /&gt;
|F - A̮&lt;br /&gt;
|K - Ạ&lt;br /&gt;
|P - A̯&lt;br /&gt;
|U - Ä&lt;br /&gt;
|Z - Ⱥ&lt;br /&gt;
|}&lt;br /&gt;
:[Cueball and Megan typing on their phones, Cueball with two hands and Megan with one hand.]&lt;br /&gt;
:Cueball's phone: A̰ÁĂĂÅ&lt;br /&gt;
:Megan's phone: A̰Ả&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel:]&lt;br /&gt;
:In the ''Scream Cipher'', messages consist of all As, with different letters distinguished using diacritics.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:Cryptography]]&lt;br /&gt;
[[Category:Unicode]]&lt;/div&gt;</summary>
		<author><name>WKoA</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3054:_Scream_Cipher&amp;diff=366407</id>
		<title>3054: Scream Cipher</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3054:_Scream_Cipher&amp;diff=366407"/>
				<updated>2025-02-22T15:12:55Z</updated>
		
		<summary type="html">&lt;p&gt;WKoA: Added link to earlier Scream Cipher implementation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3054&lt;br /&gt;
| date      = February 21, 2025&lt;br /&gt;
| title     = Scream Cipher&lt;br /&gt;
| image     = scream_cipher_2x.png&lt;br /&gt;
| imagesize = 287x416px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = AAAAAA A ÃA̧AȂA̦ ǍÅÂÃĀÁȂ AAAAAAA!&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by A ÃA̧ȂÁAǍẢÂA̋ ȦÅĀ - Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
A {{w|Cipher}} is a method of encryption, where characters or sometimes words are substituted for other characters in a set pattern, allowing for arbitrary strings to be enciphered using it. The complexity and strength of ciphers varies, from {{w|one-time pads}} and (historically) {{w|enigma machine|Enigma}} as stronger and more complex, to {{w|substitution ciphers}} as some of the weakest and least complex, where each character is simply given a set different symbol to represent it in the cipher.&lt;br /&gt;
&lt;br /&gt;
This comic uses a substitution cipher, where all the letters of the English Alphabet are represented using the letter &amp;quot;A&amp;quot;, with different {{w|diacritical marks}} to define the differences. This kind of cipher is often used on a recreational basis by children or casual enthusiasts, the similarity of the letters increasing the obcurity of the content and the skill or technology required for use, but there is also significant impracticality, as not only are substitution ciphers the easiest to break, but also the similarities in the letters do make the cipher hard to read and easy to misread, and the detail in the diacritical marks makes it easy to draw the &amp;quot;A&amp;quot;s incorrectly or ambiguously, potentially leading to [[3003: Sandwich Helix|part of the message being lost]]. This was our experience in the comments section of this very article, where one person implemented translator functions alongside another person crafting a message that failed to translate. However, the logic behind the code is mostly visual similarity, and if attentive to connecting concepts between the American and scream cipher alphabet, it could be quickly learned and translated in a glance.&lt;br /&gt;
&lt;br /&gt;
It's named &amp;quot;Scream Cipher&amp;quot; (as a pun on {{w|stream cipher}}s, commonly used in computing) because the written form of a scream is a long string of As, possibly with some other characters at the end (and often an exclamation point for emphasis), such as &amp;quot;Aaaaaah!&amp;quot; or &amp;quot;Aaaaaaagh!&amp;quot;. The name may or may not be a reference to IBM's {{w|Scream_(cipher)|Scream cipher}} published in 2002.&lt;br /&gt;
&lt;br /&gt;
In the comic, [[Cueball]] texts the ciphered version for the plaintext &amp;quot;HELLO&amp;quot;, and [[Megan]] responds with that for &amp;quot;HI&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The title text deciphers to &amp;quot;AAAAAA A SCARY MONSTER AAAAAAA!&amp;quot;&lt;br /&gt;
&lt;br /&gt;
You can translate text to and from Scream Cipher using [https://github.com/matthewpwatkins/scream-cipher/ the Scream Cipher Translator].&lt;br /&gt;
You can translate text to and from Scream Cipher using [https://github.com/matthewpwatkins/scream-cipher/ the Scream Cipher Translator] or [https://github.com/Reginald-Gillespie/ScreamCipher an alternative] with additional features.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Another recent comic featuring all &amp;quot;A&amp;quot;s was [[2957: A Crossword Puzzle]].&lt;br /&gt;
&lt;br /&gt;
==Worked example==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- If someone knows how to put this in one of those show/hide boxes, please do it --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Say we want to encode &amp;quot;Scream&amp;quot; in the Scream Cipher. First we would need to split out word into the letters, so S, C, R, E, A, M. &lt;br /&gt;
&lt;br /&gt;
The first letter is S, so if we go to S in the table S is shown to become to Ã, C similarly becomes A̧, R becomes Ȃ, E corresponds to Á, A is the main letter so A is unchanged to A, and M becomes Ǎ. If we then write them again in order, we find SCREAM becomes ÃA̧ȂÁAǍ.&lt;br /&gt;
&lt;br /&gt;
To turn cipher text back into normal text, the process is repeated in reverse. To translate A̧ẢA̯A̰ÁȂ, we go to A̧ in the table and find A̧ becomes C. Ả similarly becomes I, A̯ becomes P, A̰ becomes H, Á becomes E, and Ȃ becomes R. If we write the letters in order, we see that A̧ẢA̯A̰ÁȂ becomes CIPHER.&lt;br /&gt;
&lt;br /&gt;
==Table==&lt;br /&gt;
&lt;br /&gt;
The {{w|Unicode}} names of the characters in the cipher are as follows:&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! colspan=2 | Input !! colspan=3 | Substitution&lt;br /&gt;
|-&lt;br /&gt;
! Plain !! Unicode description !! Cipher !! Unicode description(s) !! Usage note&lt;br /&gt;
|-&lt;br /&gt;
| A || U+0041 LATIN CAPITAL LETTER A || A || '''U+0041 LATIN CAPITAL LETTER A || Unadorned base character&lt;br /&gt;
|-&lt;br /&gt;
| B || U+0042 LATIN CAPITAL LETTER B || Ȧ || '''U+0226 LATIN CAPITAL LETTER A WITH DOT ABOVE || Phonetic symbol for low central vowel&lt;br /&gt;
|-&lt;br /&gt;
| C || U+0043 LATIN CAPITAL LETTER C || A̧ || U+0041 LATIN CAPITAL LETTER A, '''U+0327 COMBINING CEDILLA''' || Cedille is often attached to a 'c', as in &amp;quot;français&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| D || U+0044 LATIN CAPITAL LETTER D || A̱ || U+0041 LATIN CAPITAL LETTER A, '''U+0331 COMBINING MACRON BELOW''' ||&lt;br /&gt;
|-&lt;br /&gt;
| E || U+0045 LATIN CAPITAL LETTER E || Á || '''U+00C1 LATIN CAPITAL LETTER A WITH ACUTE || Many words have an acute e, as in &amp;quot;fiancé&amp;quot;.&lt;br /&gt;
|-&lt;br /&gt;
| F || U+0046 LATIN CAPITAL LETTER F || A̮ || U+0041 LATIN CAPITAL LETTER A, '''U+032E COMBINING BREVE BELOW''' ||&lt;br /&gt;
|-&lt;br /&gt;
| G || U+0047 LATIN CAPITAL LETTER G || A̋ || U+0041 LATIN CAPITAL LETTER A, '''U+030B COMBINING DOUBLE ACUTE ACCENT''' ||&lt;br /&gt;
|-&lt;br /&gt;
| H || U+0048 LATIN CAPITAL LETTER H || A̰ || U+0041 LATIN CAPITAL LETTER A, '''U+0330 COMBINING TILDE BELOW''' ||&lt;br /&gt;
|-&lt;br /&gt;
| I || U+0049 LATIN CAPITAL LETTER I || Ả || '''U+1EA2 LATIN CAPITAL LETTER A WITH HOOK ABOVE ||&lt;br /&gt;
|-&lt;br /&gt;
| J || U+004A LATIN CAPITAL LETTER J || A̓ || U+0041 LATIN CAPITAL LETTER A, '''U+0313 COMBINING COMMA ABOVE''' || The comma symbol looks like a small letter 'J' in some fonts&lt;br /&gt;
|-&lt;br /&gt;
| K || U+004B LATIN CAPITAL LETTER K || Ạ || '''U+1EA0 LATIN CAPITAL LETTER A WITH DOT BELOW ||&lt;br /&gt;
|-&lt;br /&gt;
| L || U+004C LATIN CAPITAL LETTER L || Ă || '''U+0102 LATIN CAPITAL LETTER A WITH BREVE ||&lt;br /&gt;
|-&lt;br /&gt;
| M || U+004D LATIN CAPITAL LETTER M || Ǎ || '''U+01CD LATIN CAPITAL LETTER A WITH CARON ||&lt;br /&gt;
|-&lt;br /&gt;
| N || U+004E LATIN CAPITAL LETTER N || Â || '''U+00C2 LATIN CAPITAL LETTER A WITH CIRCUMFLEX || The letter 'n' looks like a circumflex in some fonts&lt;br /&gt;
|-&lt;br /&gt;
| O || U+004F LATIN CAPITAL LETTER O || Å || '''U+00C5 LATIN CAPITAL LETTER A WITH RING ABOVE || The symbol contains the letter 'O'. In Scandinavian languages like Swedish, this *is* the letter 'O' (a written 'O' may be closer to a 'U', but not always)&lt;br /&gt;
|-&lt;br /&gt;
| P || U+0050 LATIN CAPITAL LETTER P || A̯ || U+0041 LATIN CAPITAL LETTER A, '''U+032F COMBINING INVERTED BREVE BELOW''' ||&lt;br /&gt;
|-&lt;br /&gt;
| Q || U+0051 LATIN CAPITAL LETTER Q || A̤ || U+0041 LATIN CAPITAL LETTER A, '''U+0324 COMBINING DIAERESIS BELOW''' || In the Orthographies of Spanish, Catalan, French and Galician, the grapheme 'qu' normally represents a single sound, before vowels 'e' and 'i'. In the few exceptions where the 'u' is pronounced, a diaeresis is added to it.&lt;br /&gt;
|-&lt;br /&gt;
| R || U+0052 LATIN CAPITAL LETTER R || Ȃ || '''U+0202 LATIN CAPITAL LETTER A WITH INVERTED BREVE ||&lt;br /&gt;
|-&lt;br /&gt;
| S || U+0053 LATIN CAPITAL LETTER S || Ã || '''U+00C3 LATIN CAPITAL LETTER A WITH TILDE || Tilde looks like a sideways 'S'.&lt;br /&gt;
|-&lt;br /&gt;
| T || U+0054 LATIN CAPITAL LETTER T || Ā || '''U+0100 LATIN CAPITAL LETTER A WITH MACRON || The macron looks like the top horizontal line in the letter 'T'&lt;br /&gt;
|-&lt;br /&gt;
| U || U+0055 LATIN CAPITAL LETTER U || Ä || '''U+00C4 LATIN CAPITAL LETTER A WITH DIAERESIS || Many German words have a 'ü', as in &amp;quot;[[w|Fahrvergnügen]]&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| V || U+0056 LATIN CAPITAL LETTER V || À || '''U+00C0 LATIN CAPITAL LETTER A WITH GRAVE || Grave has the letter 'V' in it&lt;br /&gt;
|-&lt;br /&gt;
| W || U+0057 LATIN CAPITAL LETTER W || Ȁ || '''U+0200 LATIN CAPITAL LETTER A WITH DOUBLE GRAVE || The letter 'W' is visually two copies of the letter 'V'&lt;br /&gt;
|-&lt;br /&gt;
| X || U+0058 LATIN CAPITAL LETTER X || A̽ || U+0041 LATIN CAPITAL LETTER A, '''U+033D COMBINING X ABOVE''' || The symbol contains the letter 'X'.&lt;br /&gt;
|-&lt;br /&gt;
| Y || U+0059 LATIN CAPITAL LETTER Y || A̦ || U+0041 LATIN CAPITAL LETTER A, '''U+0326 COMBINING COMMA BELOW''' || Comma is used con conjuntion as the letter 'Y' in some languages like Spanish&lt;br /&gt;
|-&lt;br /&gt;
| Z || U+005A LATIN CAPITAL LETTER Z || Ⱥ || '''U+023A LATIN CAPITAL LETTER A WITH STROKE || The strikethrough the letter A resembles the diagonal stroke of a capital &amp;quot;Z&amp;quot;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
:[Top of the panel has 26 letters of the alphabet, each followed by a hyphen and the letter &amp;quot;A&amp;quot; with a unique diacritical mark for each. &amp;quot;A - A&amp;quot; at the top is an exception, where the latter doesn't have a diacritic.]&lt;br /&gt;
:{|&lt;br /&gt;
|A - A&lt;br /&gt;
|-&lt;br /&gt;
|B - Ȧ&lt;br /&gt;
|G - A̋&lt;br /&gt;
|L - Ă&lt;br /&gt;
|Q - A̤&lt;br /&gt;
|V - À&lt;br /&gt;
|-&lt;br /&gt;
|C - A̧&lt;br /&gt;
|H - A̰&lt;br /&gt;
|M - Ǎ&lt;br /&gt;
|R - Ȃ&lt;br /&gt;
|W - Ȁ&lt;br /&gt;
|-&lt;br /&gt;
|D - A̱&lt;br /&gt;
|I - Ả&lt;br /&gt;
|N - Â&lt;br /&gt;
|S - Ã&lt;br /&gt;
|X - A̽&lt;br /&gt;
|-&lt;br /&gt;
|E - Á&lt;br /&gt;
|J - A̓&lt;br /&gt;
|O - Å&lt;br /&gt;
|T - Ā&lt;br /&gt;
|Y - A̦&lt;br /&gt;
|-&lt;br /&gt;
|F - A̮&lt;br /&gt;
|K - Ạ&lt;br /&gt;
|P - A̯&lt;br /&gt;
|U - Ä&lt;br /&gt;
|Z - Ⱥ&lt;br /&gt;
|}&lt;br /&gt;
:[Cueball and Megan typing on their phones, Cueball with two hands and Megan with one hand.]&lt;br /&gt;
:Cueball's phone: A̰ÁĂĂÅ&lt;br /&gt;
:Megan's phone: A̰Ả&lt;br /&gt;
&lt;br /&gt;
:[Caption below the panel:]&lt;br /&gt;
:In the ''Scream Cipher'', messages consist of all As, with different letters distinguished using diacritics.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:Cryptography]]&lt;br /&gt;
[[Category:Unicode]]&lt;/div&gt;</summary>
		<author><name>WKoA</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:3054:_Scream_Cipher&amp;diff=366290</id>
		<title>Talk:3054: Scream Cipher</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:3054:_Scream_Cipher&amp;diff=366290"/>
				<updated>2025-02-22T00:19:29Z</updated>
		
		<summary type="html">&lt;p&gt;WKoA: Ooooh that's how you comment. Apologies.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
Anyone know a good free all-language OCR tool to help with the transcript? [[Special:Contributions/172.69.67.156|172.69.67.156]] 17:30, 21 February 2025 (UTC)&lt;br /&gt;
: Found one here: https://www.lexilogos.com/keyboard/diacritics.htm --mezimm [[Special:Contributions/172.68.2.70|172.68.2.70]] 17:52, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
The written cipher is very interesting, but where can I hear recordings of the spoken form? [[Special:Contributions/Rockymountain|Rockymountain]] 17:31, 21 February 2025 (UTC)&lt;br /&gt;
: [https://www.youtube.com/watch?v=eL4piuUn5nc Here ya go.] --mezimm [[Special:Contributions/172.68.35.117|172.68.35.117]] 17:54, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Are Cueball and Megan millenials? Who else would text greetings when they're standing right next to each other? [[User:Barmar|Barmar]] ([[User talk:Barmar|talk]]) 17:38, 21 February 2025 (UTC)&lt;br /&gt;
:They could be texting other people. [[User:B_for_brain|B for brain]] ([[User_talk:B_for_brain|talk]]) ([https://www.youtube.com/@bforbrain youtube channel] [https://bforbrain.weebly.com/ wobsite (supposed to be a blag)]) 19:37, 21 February 2025 (UTC)&lt;br /&gt;
:Engineers and cyberfolk were text messaging their neighbors rather than talking long before it was &amp;lt;s&amp;gt;cool&amp;lt;/s&amp;gt; encouraged for social distancing or quarantine! It's always helpful to get a reminder not to do this. [[Special:Contributions/162.158.159.101|162.158.159.101]] 20:37, 21 February 2025 (UTC)&lt;br /&gt;
:They might not be diegetically in the same room. Comics can get weird with physical space. [[User:GreatWyrmGold|GreatWyrmGold]] ([[User talk:GreatWyrmGold|talk]]) 20:34, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Likely a pun on &amp;quot;stream cipher&amp;quot;&lt;br /&gt;
&lt;br /&gt;
- Related reference: https://en.wikipedia.org/wiki/Scream_(cipher) [[Special:Contributions/172.68.26.229|172.68.26.229]] 17:46, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
A̦ÅÄ ẠÂÅȀ, A̓A̅ ȀÅÄĂA̱ ȦÁ ÂÁAĂĂA̦ A̮ÄÂÂA̦ A̓A̮ ȀÁ A̱A̓A̱ A ÀÁÂÃA̓ÅÂ ÅA̮ A̅A̰A̓Ã A̭AA̋Á A̓Â A̅A̰A̓Ã ÃA̅A̦ĂÁ! --mezimm [[Special:Contributions/172.68.3.112|172.68.3.112]] 17:50, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The Wikifunction [https://www.wikifunctions.org/view/en/Z22728 from Scream] returns &amp;quot;YOU KNOW, JA̅ WOULD BE NEALLY FUNNY JF WE DJD A VENSJON OF A̅HJS A̭AGE JN A̅HJS SA̅YLE!&amp;quot;. Hmmm... [[User:Mwarren|Mwarren]] ([[User talk:Mwarren|talk]]) 19:04, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::The page you link to came into existence 7 minutes after I had posted this comment ;) I was doing it all manually, using [https://www.lexilogos.com/keyboard/diacritics.htm this page] and best-guess attempts to interpret what Randall's handwritten diacritics were meant to correspond to. --mezimm [[Special:Contributions/172.68.1.158|172.68.1.158]] 19:55, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: updated version: &amp;quot;A̦ÅÄ ẠÂÅȀ, ẢĀ ȀÅÄĂA̱ ȦÁ ȂÁAĂĂA̦ A̮ÄÂÂA̦ ẢA̮ ȀÁ A̱ẢA̱ A ÀÁȂÃẢÅÂ ÅA̮ ĀA̰ẢÃ A̯AA̋Á ẢÂ ĀA̰ẢÃ ÃĀA̦ĂÁ!&amp;quot; --mezimm [[Special:Contributions/172.68.3.67|172.68.3.67]] 20:01, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
On Wikifunctions, we implemented the two functions [https://www.wikifunctions.org/view/en/Z22725 to Scream Cipher] and [https://www.wikifunctions.org/view/en/Z22728 from Scream Cipher] --[[Special:Contributions/172.70.38.235|172.70.38.235]] 18:09, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:It looks like the wikifunctions are using a different character for &amp;quot;D&amp;quot; than [https://scream-cipher.netlify.app/ the github project] linked in the explanation. Seems as though one's using U+0331 and the other's using 0332. [[User:Schiffy|&amp;lt;font color=&amp;quot;000999&amp;quot;&amp;gt;Schiffy&amp;lt;/font&amp;gt;]] ([[User_talk:Schiffy|&amp;lt;font color=&amp;quot;FF6600&amp;quot;&amp;gt;Speak to me&amp;lt;/font&amp;gt;]]|[[Special:Contributions/Schiffy|&amp;lt;font color=&amp;quot;FF0000&amp;quot;&amp;gt;What I've done&amp;lt;/font&amp;gt;]]) 20:32, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Is there a logic behind the choices of the letter? I guess A̧ is for C because of the French ç and Å is pronounced like O in some Nordic languages. Also, is it A̱, A̲ or A̲ ? (or something else). [[Special:Contributions/172.71.126.50|172.71.126.50]] 18:10, 21 February 2025 (UTC)&lt;br /&gt;
: Seems to be mostly visual similarity. Å has an actual O shape added to it. [[Special:Contributions/172.70.110.171|172.70.110.171]] 20:19, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
I give it a week for people to make a translator to and from this cipher. [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 18:20, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
- The Wikifunctions translations above were complete at least 11 minutes ''before'' your comment and well within the goal of one week :-) . [[User:Mwarren|Mwarren]] ([[User talk:Mwarren|talk]]) 19:04, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Numbers should be variations of h and/or g. [[User:Andyd273|Andyd273]] ([[User talk:Andyd273|talk]]) 18:32, 21 February 2025 (UTC)#&lt;br /&gt;
:H &amp;gt; g [[User:SqueakSquawk4|SqueakSquawk4]] ([[User talk:SqueakSquawk4|talk]]) 18:59, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Using ''sed'' you can encode with &amp;lt;code&amp;gt;sed 's/C/A̧/g;s/D/A̱/g;s/F/A̮/g;s/G/A̋/g;s/H/A̰/g;s/J/A̓/g;s/P/A̯/g;s/Q/A̤/g;s/X/A̽/g;s/Y/A̦/g;y/BEIKLMNORSTUVWZ/ȦÁẢẠĂǍÂÅȂÃĀÄÀȀȺ/'&amp;lt;/code&amp;gt; and decode with &amp;lt;code&amp;gt;sed 's/A̧/C/g;s/A̱/D/g;s/A̮/F/g;s/A̋/G/g;s/A̰/H/g;s/A̓/J/g;s/A̯/P/g;s/A̤/Q/g;s/A̽/X/g;s/A̦/Y/g;y/ȦÁẢẠĂǍÂÅȂÃĀÄÀȀȺ/BEIKLMNORSTUVWZ/'&amp;lt;/code&amp;gt;. [[Special:Contributions/162.158.159.102|162.158.159.102]] 18:41, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be really funny if someone added an image of Bill Cipher screaming, with the tag &amp;quot;A screaming cipher&amp;quot;. It wouldn't reall fit but it'd be funny [[User:SqueakSquawk4|SqueakSquawk4]] ([[User talk:SqueakSquawk4|talk]]) 18:59, 21 February 2025 (UTC)&lt;br /&gt;
:[[File:Screamingcipher.png]] I did. [[User:B_for_brain|B for brain]] ([[User_talk:B_for_brain|talk]]) ([https://www.youtube.com/@bforbrain youtube channel] [https://bforbrain.weebly.com/ wobsite (supposed to be a blag)]) 19:57, 21 February 2025 (UTC) (EDIT: WOW, that thing is MASSIVE! Can someone please downscale it because I have no idea how. You have permission to edit my comment '''''only for that.''''') (DOUBLE EDIT: Nevermind, I did it.)&lt;br /&gt;
Someone started a GitHub repo with a web-based encoded/decoder already: https://github.com/Reginald-Gillespie/StreamCipher [[User:Dlech|Dlech]] ([[User talk:Dlech|talk]]) 19:35, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'd almost want to edit in my repo instead of the current one because mine is objectively better, but I'm new to this and not sure if that's appropriate or not =P (I don't even know if I am commenting correctly) [[User:WKoA|WKoA]] ([[User talk:WKoA|talk]])&lt;br /&gt;
&lt;br /&gt;
I know you can decode a substitution cipher by counting letters and replacing common ones like 'E' and then filling in the rest by inspection, but what kinds of automated approaches are there? [[Special:Contributions/162.158.159.105|162.158.159.105]] 20:14, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
'''HEADS UP:''' I just changed A̲ (0332 COMBINING LOW LINE) to A̱ (0331 COMBINING MACRON BELOW) as encoding for &amp;quot;D&amp;quot; in the table and the transcript. Rationale: &amp;quot;T&amp;quot; is written with macron, so it's only logical to encode &amp;quot;D&amp;quot; likewise. A &amp;quot;low line&amp;quot; is longer than a macron, and looking at Randall's comic, the line below the &amp;quot;D&amp;quot; is definitely not longer than the one above &amp;quot;T&amp;quot;. It would also make no sense to encode &amp;quot;T&amp;quot; with a &amp;quot;combining low line&amp;quot; as well when a single, uncombined character exists. [[Special:Contributions/172.70.114.123|172.70.114.123]] 20:29, 21 February 2025 (UTC)&lt;/div&gt;</summary>
		<author><name>WKoA</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:3054:_Scream_Cipher&amp;diff=366289</id>
		<title>Talk:3054: Scream Cipher</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:3054:_Scream_Cipher&amp;diff=366289"/>
				<updated>2025-02-22T00:17:38Z</updated>
		
		<summary type="html">&lt;p&gt;WKoA: I think that's how you're supposed to do comments?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
Anyone know a good free all-language OCR tool to help with the transcript? [[Special:Contributions/172.69.67.156|172.69.67.156]] 17:30, 21 February 2025 (UTC)&lt;br /&gt;
: Found one here: https://www.lexilogos.com/keyboard/diacritics.htm --mezimm [[Special:Contributions/172.68.2.70|172.68.2.70]] 17:52, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
The written cipher is very interesting, but where can I hear recordings of the spoken form? [[Special:Contributions/Rockymountain|Rockymountain]] 17:31, 21 February 2025 (UTC)&lt;br /&gt;
: [https://www.youtube.com/watch?v=eL4piuUn5nc Here ya go.] --mezimm [[Special:Contributions/172.68.35.117|172.68.35.117]] 17:54, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Are Cueball and Megan millenials? Who else would text greetings when they're standing right next to each other? [[User:Barmar|Barmar]] ([[User talk:Barmar|talk]]) 17:38, 21 February 2025 (UTC)&lt;br /&gt;
:They could be texting other people. [[User:B_for_brain|B for brain]] ([[User_talk:B_for_brain|talk]]) ([https://www.youtube.com/@bforbrain youtube channel] [https://bforbrain.weebly.com/ wobsite (supposed to be a blag)]) 19:37, 21 February 2025 (UTC)&lt;br /&gt;
:Engineers and cyberfolk were text messaging their neighbors rather than talking long before it was &amp;lt;s&amp;gt;cool&amp;lt;/s&amp;gt; encouraged for social distancing or quarantine! It's always helpful to get a reminder not to do this. [[Special:Contributions/162.158.159.101|162.158.159.101]] 20:37, 21 February 2025 (UTC)&lt;br /&gt;
:They might not be diegetically in the same room. Comics can get weird with physical space. [[User:GreatWyrmGold|GreatWyrmGold]] ([[User talk:GreatWyrmGold|talk]]) 20:34, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Likely a pun on &amp;quot;stream cipher&amp;quot;&lt;br /&gt;
&lt;br /&gt;
- Related reference: https://en.wikipedia.org/wiki/Scream_(cipher) [[Special:Contributions/172.68.26.229|172.68.26.229]] 17:46, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
A̦ÅÄ ẠÂÅȀ, A̓A̅ ȀÅÄĂA̱ ȦÁ ÂÁAĂĂA̦ A̮ÄÂÂA̦ A̓A̮ ȀÁ A̱A̓A̱ A ÀÁÂÃA̓ÅÂ ÅA̮ A̅A̰A̓Ã A̭AA̋Á A̓Â A̅A̰A̓Ã ÃA̅A̦ĂÁ! --mezimm [[Special:Contributions/172.68.3.112|172.68.3.112]] 17:50, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The Wikifunction [https://www.wikifunctions.org/view/en/Z22728 from Scream] returns &amp;quot;YOU KNOW, JA̅ WOULD BE NEALLY FUNNY JF WE DJD A VENSJON OF A̅HJS A̭AGE JN A̅HJS SA̅YLE!&amp;quot;. Hmmm... [[User:Mwarren|Mwarren]] ([[User talk:Mwarren|talk]]) 19:04, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::The page you link to came into existence 7 minutes after I had posted this comment ;) I was doing it all manually, using [https://www.lexilogos.com/keyboard/diacritics.htm this page] and best-guess attempts to interpret what Randall's handwritten diacritics were meant to correspond to. --mezimm [[Special:Contributions/172.68.1.158|172.68.1.158]] 19:55, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: updated version: &amp;quot;A̦ÅÄ ẠÂÅȀ, ẢĀ ȀÅÄĂA̱ ȦÁ ȂÁAĂĂA̦ A̮ÄÂÂA̦ ẢA̮ ȀÁ A̱ẢA̱ A ÀÁȂÃẢÅÂ ÅA̮ ĀA̰ẢÃ A̯AA̋Á ẢÂ ĀA̰ẢÃ ÃĀA̦ĂÁ!&amp;quot; --mezimm [[Special:Contributions/172.68.3.67|172.68.3.67]] 20:01, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
On Wikifunctions, we implemented the two functions [https://www.wikifunctions.org/view/en/Z22725 to Scream Cipher] and [https://www.wikifunctions.org/view/en/Z22728 from Scream Cipher] --[[Special:Contributions/172.70.38.235|172.70.38.235]] 18:09, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:It looks like the wikifunctions are using a different character for &amp;quot;D&amp;quot; than [https://scream-cipher.netlify.app/ the github project] linked in the explanation. Seems as though one's using U+0331 and the other's using 0332. [[User:Schiffy|&amp;lt;font color=&amp;quot;000999&amp;quot;&amp;gt;Schiffy&amp;lt;/font&amp;gt;]] ([[User_talk:Schiffy|&amp;lt;font color=&amp;quot;FF6600&amp;quot;&amp;gt;Speak to me&amp;lt;/font&amp;gt;]]|[[Special:Contributions/Schiffy|&amp;lt;font color=&amp;quot;FF0000&amp;quot;&amp;gt;What I've done&amp;lt;/font&amp;gt;]]) 20:32, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Is there a logic behind the choices of the letter? I guess A̧ is for C because of the French ç and Å is pronounced like O in some Nordic languages. Also, is it A̱, A̲ or A̲ ? (or something else). [[Special:Contributions/172.71.126.50|172.71.126.50]] 18:10, 21 February 2025 (UTC)&lt;br /&gt;
: Seems to be mostly visual similarity. Å has an actual O shape added to it. [[Special:Contributions/172.70.110.171|172.70.110.171]] 20:19, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
I give it a week for people to make a translator to and from this cipher. [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 18:20, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
- The Wikifunctions translations above were complete at least 11 minutes ''before'' your comment and well within the goal of one week :-) . [[User:Mwarren|Mwarren]] ([[User talk:Mwarren|talk]]) 19:04, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Numbers should be variations of h and/or g. [[User:Andyd273|Andyd273]] ([[User talk:Andyd273|talk]]) 18:32, 21 February 2025 (UTC)#&lt;br /&gt;
:H &amp;gt; g [[User:SqueakSquawk4|SqueakSquawk4]] ([[User talk:SqueakSquawk4|talk]]) 18:59, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Using ''sed'' you can encode with &amp;lt;code&amp;gt;sed 's/C/A̧/g;s/D/A̱/g;s/F/A̮/g;s/G/A̋/g;s/H/A̰/g;s/J/A̓/g;s/P/A̯/g;s/Q/A̤/g;s/X/A̽/g;s/Y/A̦/g;y/BEIKLMNORSTUVWZ/ȦÁẢẠĂǍÂÅȂÃĀÄÀȀȺ/'&amp;lt;/code&amp;gt; and decode with &amp;lt;code&amp;gt;sed 's/A̧/C/g;s/A̱/D/g;s/A̮/F/g;s/A̋/G/g;s/A̰/H/g;s/A̓/J/g;s/A̯/P/g;s/A̤/Q/g;s/A̽/X/g;s/A̦/Y/g;y/ȦÁẢẠĂǍÂÅȂÃĀÄÀȀȺ/BEIKLMNORSTUVWZ/'&amp;lt;/code&amp;gt;. [[Special:Contributions/162.158.159.102|162.158.159.102]] 18:41, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be really funny if someone added an image of Bill Cipher screaming, with the tag &amp;quot;A screaming cipher&amp;quot;. It wouldn't reall fit but it'd be funny [[User:SqueakSquawk4|SqueakSquawk4]] ([[User talk:SqueakSquawk4|talk]]) 18:59, 21 February 2025 (UTC)&lt;br /&gt;
:[[File:Screamingcipher.png]] I did. [[User:B_for_brain|B for brain]] ([[User_talk:B_for_brain|talk]]) ([https://www.youtube.com/@bforbrain youtube channel] [https://bforbrain.weebly.com/ wobsite (supposed to be a blag)]) 19:57, 21 February 2025 (UTC) (EDIT: WOW, that thing is MASSIVE! Can someone please downscale it because I have no idea how. You have permission to edit my comment '''''only for that.''''') (DOUBLE EDIT: Nevermind, I did it.)&lt;br /&gt;
Someone started a GitHub repo with a web-based encoded/decoder already: https://github.com/Reginald-Gillespie/StreamCipher [[User:Dlech|Dlech]] ([[User talk:Dlech|talk]]) 19:35, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'd almost want to edit in my repo instead of the current one because mine is objectively better, but I'm new to this and not sure if that's appropriate or not =P (I don't even know if I am commenting correctly) [[User:WKoA|WKoA]] ([[User WKoA:WKoA|WKoA]]) 00:13, 22 February 2025 (UTC)[[User:WKoA|WKoA]] ([[User talk:WKoA|talk]]) 00:17, 22 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
I know you can decode a substitution cipher by counting letters and replacing common ones like 'E' and then filling in the rest by inspection, but what kinds of automated approaches are there? [[Special:Contributions/162.158.159.105|162.158.159.105]] 20:14, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
'''HEADS UP:''' I just changed A̲ (0332 COMBINING LOW LINE) to A̱ (0331 COMBINING MACRON BELOW) as encoding for &amp;quot;D&amp;quot; in the table and the transcript. Rationale: &amp;quot;T&amp;quot; is written with macron, so it's only logical to encode &amp;quot;D&amp;quot; likewise. A &amp;quot;low line&amp;quot; is longer than a macron, and looking at Randall's comic, the line below the &amp;quot;D&amp;quot; is definitely not longer than the one above &amp;quot;T&amp;quot;. It would also make no sense to encode &amp;quot;T&amp;quot; with a &amp;quot;combining low line&amp;quot; as well when a single, uncombined character exists. [[Special:Contributions/172.70.114.123|172.70.114.123]] 20:29, 21 February 2025 (UTC)&lt;/div&gt;</summary>
		<author><name>WKoA</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:3054:_Scream_Cipher&amp;diff=366288</id>
		<title>Talk:3054: Scream Cipher</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:3054:_Scream_Cipher&amp;diff=366288"/>
				<updated>2025-02-22T00:15:04Z</updated>
		
		<summary type="html">&lt;p&gt;WKoA: Adding a comment... I think?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
Anyone know a good free all-language OCR tool to help with the transcript? [[Special:Contributions/172.69.67.156|172.69.67.156]] 17:30, 21 February 2025 (UTC)&lt;br /&gt;
: Found one here: https://www.lexilogos.com/keyboard/diacritics.htm --mezimm [[Special:Contributions/172.68.2.70|172.68.2.70]] 17:52, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
The written cipher is very interesting, but where can I hear recordings of the spoken form? [[Special:Contributions/Rockymountain|Rockymountain]] 17:31, 21 February 2025 (UTC)&lt;br /&gt;
: [https://www.youtube.com/watch?v=eL4piuUn5nc Here ya go.] --mezimm [[Special:Contributions/172.68.35.117|172.68.35.117]] 17:54, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Are Cueball and Megan millenials? Who else would text greetings when they're standing right next to each other? [[User:Barmar|Barmar]] ([[User talk:Barmar|talk]]) 17:38, 21 February 2025 (UTC)&lt;br /&gt;
:They could be texting other people. [[User:B_for_brain|B for brain]] ([[User_talk:B_for_brain|talk]]) ([https://www.youtube.com/@bforbrain youtube channel] [https://bforbrain.weebly.com/ wobsite (supposed to be a blag)]) 19:37, 21 February 2025 (UTC)&lt;br /&gt;
:Engineers and cyberfolk were text messaging their neighbors rather than talking long before it was &amp;lt;s&amp;gt;cool&amp;lt;/s&amp;gt; encouraged for social distancing or quarantine! It's always helpful to get a reminder not to do this. [[Special:Contributions/162.158.159.101|162.158.159.101]] 20:37, 21 February 2025 (UTC)&lt;br /&gt;
:They might not be diegetically in the same room. Comics can get weird with physical space. [[User:GreatWyrmGold|GreatWyrmGold]] ([[User talk:GreatWyrmGold|talk]]) 20:34, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Likely a pun on &amp;quot;stream cipher&amp;quot;&lt;br /&gt;
&lt;br /&gt;
- Related reference: https://en.wikipedia.org/wiki/Scream_(cipher) [[Special:Contributions/172.68.26.229|172.68.26.229]] 17:46, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
A̦ÅÄ ẠÂÅȀ, A̓A̅ ȀÅÄĂA̱ ȦÁ ÂÁAĂĂA̦ A̮ÄÂÂA̦ A̓A̮ ȀÁ A̱A̓A̱ A ÀÁÂÃA̓ÅÂ ÅA̮ A̅A̰A̓Ã A̭AA̋Á A̓Â A̅A̰A̓Ã ÃA̅A̦ĂÁ! --mezimm [[Special:Contributions/172.68.3.112|172.68.3.112]] 17:50, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:The Wikifunction [https://www.wikifunctions.org/view/en/Z22728 from Scream] returns &amp;quot;YOU KNOW, JA̅ WOULD BE NEALLY FUNNY JF WE DJD A VENSJON OF A̅HJS A̭AGE JN A̅HJS SA̅YLE!&amp;quot;. Hmmm... [[User:Mwarren|Mwarren]] ([[User talk:Mwarren|talk]]) 19:04, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::The page you link to came into existence 7 minutes after I had posted this comment ;) I was doing it all manually, using [https://www.lexilogos.com/keyboard/diacritics.htm this page] and best-guess attempts to interpret what Randall's handwritten diacritics were meant to correspond to. --mezimm [[Special:Contributions/172.68.1.158|172.68.1.158]] 19:55, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
::: updated version: &amp;quot;A̦ÅÄ ẠÂÅȀ, ẢĀ ȀÅÄĂA̱ ȦÁ ȂÁAĂĂA̦ A̮ÄÂÂA̦ ẢA̮ ȀÁ A̱ẢA̱ A ÀÁȂÃẢÅÂ ÅA̮ ĀA̰ẢÃ A̯AA̋Á ẢÂ ĀA̰ẢÃ ÃĀA̦ĂÁ!&amp;quot; --mezimm [[Special:Contributions/172.68.3.67|172.68.3.67]] 20:01, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
On Wikifunctions, we implemented the two functions [https://www.wikifunctions.org/view/en/Z22725 to Scream Cipher] and [https://www.wikifunctions.org/view/en/Z22728 from Scream Cipher] --[[Special:Contributions/172.70.38.235|172.70.38.235]] 18:09, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
:It looks like the wikifunctions are using a different character for &amp;quot;D&amp;quot; than [https://scream-cipher.netlify.app/ the github project] linked in the explanation. Seems as though one's using U+0331 and the other's using 0332. [[User:Schiffy|&amp;lt;font color=&amp;quot;000999&amp;quot;&amp;gt;Schiffy&amp;lt;/font&amp;gt;]] ([[User_talk:Schiffy|&amp;lt;font color=&amp;quot;FF6600&amp;quot;&amp;gt;Speak to me&amp;lt;/font&amp;gt;]]|[[Special:Contributions/Schiffy|&amp;lt;font color=&amp;quot;FF0000&amp;quot;&amp;gt;What I've done&amp;lt;/font&amp;gt;]]) 20:32, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Is there a logic behind the choices of the letter? I guess A̧ is for C because of the French ç and Å is pronounced like O in some Nordic languages. Also, is it A̱, A̲ or A̲ ? (or something else). [[Special:Contributions/172.71.126.50|172.71.126.50]] 18:10, 21 February 2025 (UTC)&lt;br /&gt;
: Seems to be mostly visual similarity. Å has an actual O shape added to it. [[Special:Contributions/172.70.110.171|172.70.110.171]] 20:19, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
I give it a week for people to make a translator to and from this cipher. [[User:CalibansCreations|'''&amp;lt;span style=&amp;quot;color:#ff0000;&amp;quot;&amp;gt;Caliban&amp;lt;/span&amp;gt;''']] ([[User talk:CalibansCreations|talk]]) 18:20, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
- The Wikifunctions translations above were complete at least 11 minutes ''before'' your comment and well within the goal of one week :-) . [[User:Mwarren|Mwarren]] ([[User talk:Mwarren|talk]]) 19:04, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Numbers should be variations of h and/or g. [[User:Andyd273|Andyd273]] ([[User talk:Andyd273|talk]]) 18:32, 21 February 2025 (UTC)#&lt;br /&gt;
:H &amp;gt; g [[User:SqueakSquawk4|SqueakSquawk4]] ([[User talk:SqueakSquawk4|talk]]) 18:59, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Using ''sed'' you can encode with &amp;lt;code&amp;gt;sed 's/C/A̧/g;s/D/A̱/g;s/F/A̮/g;s/G/A̋/g;s/H/A̰/g;s/J/A̓/g;s/P/A̯/g;s/Q/A̤/g;s/X/A̽/g;s/Y/A̦/g;y/BEIKLMNORSTUVWZ/ȦÁẢẠĂǍÂÅȂÃĀÄÀȀȺ/'&amp;lt;/code&amp;gt; and decode with &amp;lt;code&amp;gt;sed 's/A̧/C/g;s/A̱/D/g;s/A̮/F/g;s/A̋/G/g;s/A̰/H/g;s/A̓/J/g;s/A̯/P/g;s/A̤/Q/g;s/A̽/X/g;s/A̦/Y/g;y/ȦÁẢẠĂǍÂÅȂÃĀÄÀȀȺ/BEIKLMNORSTUVWZ/'&amp;lt;/code&amp;gt;. [[Special:Contributions/162.158.159.102|162.158.159.102]] 18:41, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
It would be really funny if someone added an image of Bill Cipher screaming, with the tag &amp;quot;A screaming cipher&amp;quot;. It wouldn't reall fit but it'd be funny [[User:SqueakSquawk4|SqueakSquawk4]] ([[User talk:SqueakSquawk4|talk]]) 18:59, 21 February 2025 (UTC)&lt;br /&gt;
:[[File:Screamingcipher.png]] I did. [[User:B_for_brain|B for brain]] ([[User_talk:B_for_brain|talk]]) ([https://www.youtube.com/@bforbrain youtube channel] [https://bforbrain.weebly.com/ wobsite (supposed to be a blag)]) 19:57, 21 February 2025 (UTC) (EDIT: WOW, that thing is MASSIVE! Can someone please downscale it because I have no idea how. You have permission to edit my comment '''''only for that.''''') (DOUBLE EDIT: Nevermind, I did it.)&lt;br /&gt;
Someone started a GitHub repo with a web-based encoded/decoder already: https://github.com/Reginald-Gillespie/StreamCipher [[User:Dlech|Dlech]] ([[User talk:Dlech|talk]]) 19:35, 21 February 2025 (UTC)&lt;br /&gt;
I'd almost want to edit in my repo instead of the current one because mine is objectively better, but I'm new to this and not sure if that's appropriate or not =P (I don't even know if I am commenting correctly) [[User:WKoA|WKoA]] ([[User WKoA:WKoA|WKoA]]) 00:13, 22 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
I know you can decode a substitution cipher by counting letters and replacing common ones like 'E' and then filling in the rest by inspection, but what kinds of automated approaches are there? [[Special:Contributions/162.158.159.105|162.158.159.105]] 20:14, 21 February 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
'''HEADS UP:''' I just changed A̲ (0332 COMBINING LOW LINE) to A̱ (0331 COMBINING MACRON BELOW) as encoding for &amp;quot;D&amp;quot; in the table and the transcript. Rationale: &amp;quot;T&amp;quot; is written with macron, so it's only logical to encode &amp;quot;D&amp;quot; likewise. A &amp;quot;low line&amp;quot; is longer than a macron, and looking at Randall's comic, the line below the &amp;quot;D&amp;quot; is definitely not longer than the one above &amp;quot;T&amp;quot;. It would also make no sense to encode &amp;quot;T&amp;quot; with a &amp;quot;combining low line&amp;quot; as well when a single, uncombined character exists. [[Special:Contributions/172.70.114.123|172.70.114.123]] 20:29, 21 February 2025 (UTC)&lt;/div&gt;</summary>
		<author><name>WKoA</name></author>	</entry>

	</feed>