<?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=Ryden</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=Ryden"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/Ryden"/>
		<updated>2026-05-14T17:59:07Z</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=366610</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=366610"/>
				<updated>2025-02-24T12:43:36Z</updated>
		
		<summary type="html">&lt;p&gt;Ryden: /* Trivia */&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 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;
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;
==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.&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>Ryden</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:3022:_Making_Tea&amp;diff=359117</id>
		<title>Talk:3022: Making Tea</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:3022:_Making_Tea&amp;diff=359117"/>
				<updated>2024-12-11T12:27:25Z</updated>
		
		<summary type="html">&lt;p&gt;Ryden: &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;
I wonder where [https://en.wikipedia.org/wiki/Boston_Tea_Party making it in Boston Harbor, at ambient temperature, at scale] would fit on this scale. [[Special:Contributions/172.70.206.162|172.70.206.162]] 04:38, 10 December 2024 (UTC)&lt;br /&gt;
: A little to the left of the microwave thing. [[Special:Contributions/162.158.186.252|162.158.186.252]] 05:14, 10 December 2024 (UTC)&lt;br /&gt;
:: Oh, no, much further to the right. You stole our colony from us, set up some tinpot, pretended 'country' in its place, and you didn't even have the class to make a decent cup of tea first. [[Special:Contributions/172.68.205.93|12.68.205.93]] 06:24, 10 December 2024 (UTC)&lt;br /&gt;
:: And, even if [https://www.bbc.co.uk/news/uk-68085304 this guy] is right, ''way'' too much salt... [[Special:Contributions/172.70.91.130|172.70.91.130]] 07:03, 10 December 2024 (UTC)&lt;br /&gt;
::: Soyuz nyerushimyy respublik svobodnik... [[User:DollarStoreBa&amp;amp;#39;al|DollarStoreBa&amp;amp;#39;al]] ([[User talk:DollarStoreBa&amp;amp;#39;al|talk]]) 14:13, 10 December 2024 (UTC)&lt;br /&gt;
:::: Well maybe if you didnt force us to buy discounted tea from you after fighting a war for us, we wouldn't be in this situation. [[User:Apollo11|Apollo11]] ([[User talk:Apollo11|talk]]) 15:43, 10 December 2024 (UTC)&lt;br /&gt;
::::: Yeah, a tiny island should not have that much control over a fractionable part of a continent [[User:Danger Kitty|Danger Kitty]] ([[User talk:Danger Kitty|talk]])&lt;br /&gt;
: I would like to as a british person to corroborate this, in the 80's my Dad visited the USA (he did go to florida) and still is complaining that the freshly boiled water wasn't poured directly onto the tea bag but was instead the tea bag and the hot water(now luke warm water) and bag was delivered separately!!! The delivery of freshly boiling water on to the bag is the major issue with microwaves, not the nucleation thing in my experience. Bear in mind I don't even actually like tea, still care enough to right this, but i'll be signing this anonymously to avoid shame being bought on my family and my family's familys. Murderous royals are a lot less popular the tea [[Special:Contributions/108.162.245.227|108.162.245.227]]&lt;br /&gt;
:: I first visited the US in 1980.  A friend who was with hate coffee and was horrified when he ordered tea that he got the water and the tea bag separately.  When he suggested they add the water as soon as it was boiled, the wait staff thought he was joking.  Many years later in Texas, a waiter asked me why I, a Brit, was drinking coffee, not tea.  &amp;quot;You don't know how to make it,&amp;quot; I replied.  (In my house, the electric kettle and teapot sit next to each other on the kitchen worktop.)--[[Special:Contributions/172.70.160.135|172.70.160.135]] 09:22, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
When I make ramen, I put the measuring cup in the microwave. Fight me. [[Special:Contributions/162.158.167.87|162.158.167.87]] 05:35, 10 December 2024 (UTC)&lt;br /&gt;
:: On behalf of the British Empire: whateva.  [[User:Kev|Kev]] ([[User talk:Kev|talk]]) 18:28, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;...to the point virtually every home has an electric tea kettle as a standard appliance&amp;quot;. If I'm reading it correctly, this and the comic suggests we (though not I, as I'm not a tea-drinker) make tea ''in the electric kettle''. Electric tea-urns, yes, or maybe a setup like a samovar. But, generally, the kettle itself (and, so far as I'm aware, always with an electric kettle) is used to heat the water, which you then pour into the tea''pot'' into which the requisite number of tealeaves/teabags are also put to steep. (Or, for the lazy way, into the mug-with-teabag.) I wouldn't be able to use my electric kettle to (for example) make my instant mashed-potato into the actual mash, if I'd have regularly used it to mash tea. Or top up the boiling saucepan that I'd realised I'd not quite enough water in to cover the pasta/vegetables/whatever. Or to easily add nust a little more heat (with less new water) to the washing-up bowl than would be possible from the hot tap, back to as hot as possible without scalding me. – Whether intentional or not, I suspect Randall has the role of kettle and teapot mixed up, and so (without the intent to parody) has the editor who wrote the above. [[Special:Contributions/172.70.160.135|172.70.160.135]] 05:49, 10 December 2024 (UTC)&lt;br /&gt;
:: Agree, we make tea in a mug using water from a kettle.  I'd be furious if an American made tea in my kettle, how will I then make up my instant Nescafe? [[User:Kev|Kev]] ([[User talk:Kev|talk]]) 18:28, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I don't think the section on 'Boiling the water in a pot' refers to a teapot - I think it means boiling the water in a pot on the hob, and then making tea with it (in a pot/mug). [[Special:Contributions/172.69.195.27|172.69.195.27]] 07:53, 10 December 2024 (UTC)&lt;br /&gt;
:I agree, but I also think there's a language issue with the use of pot vs. pan that makes things more confusing. I think there are several types of cookware that Americans call pot and British call pan. So British would not say they boil water in a pot but rather in a saucepan (if there's no kettle available of course). [[User:Mtcv|Mtcv]] ([[User talk:Mtcv|talk]]) 09:03, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I (as Brit) am uncommon in using an electric filter coffee machine to make tea (two bags in what is supposed to be the coffee filter). Set up, press the button and come back to a not jug of fresh tea which is not stewed. If later, the hot plate has shut off and it is cold, you can zap it in a mug in the microwave. [[User:RIIW - Ponder it|RIIW - Ponder it]] ([[User talk:RIIW - Ponder it|talk]]) 08:11, 10 December 2024 (UTC)&lt;br /&gt;
: As another brit, what? I do not understand the mechanics of this, please elaborate. Additionally, my understanding is that the water would be *briefly acquainted* with the tea, thus would be a poor facsimile of &amp;quot;tea&amp;quot; and would rather be closer to something the americans would attempt. [[Special:Contributions/141.101.99.126|141.101.99.126]] 11:46, 10 December 2024 (UTC)&lt;br /&gt;
:::I did say 'uncommon' but Kenwood made a coffee/tea machine to do this. It sounds like it shouldn't work, but 167 below has the basics right. [[User:RIIW - Ponder it|RIIW - Ponder it]] ([[User talk:RIIW - Ponder it|talk]]) 09:13, 11 December 2024 (UTC)&lt;br /&gt;
::I'm guessing the water would drip on to the teabags, then soak all the way through them and drip out into the jug, without allowing sufficient to accumulate that it would run straight out without passing fully through the bag. It's an intriguing idea. But most definitely wrong.[[Special:Contributions/172.70.85.239|172.70.85.239]] 17:15, 10 December 2024 (UTC)&lt;br /&gt;
:::Your guess is right. It works because the (finely cut) leaves are exposed to boiling hot water for a few minutes, you wouldn't drink any before you have half a jug and that is quite 'bright'. Better than a teabag in a mug! Want it stronger, use more bags. Big advantage - you set it up, press button, come back in 5 to 25 minutes and your tea is waiting, including a second mug, not and not stewed. Wrong - but works so right. [[User:RIIW - Ponder it|RIIW - Ponder it]] ([[User talk:RIIW - Ponder it|talk]]) 09:13, 11 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Thanks, [https://www.youtube.com/watch?v=_yMMTVVJI4c Technology Connections]! [[Special:Contributions/141.101.109.167|141.101.109.167]] 09:51, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
You Westerners have literally no idea how to make proper, good tea!  SMH [[User:TPS|TPS]] ([[User talk:TPS|talk]]) 13:00, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
As a Brit who grew up in sight of the Yorkshire Tea factory – and worked there on occasion – and having travelled very widely around the world – including in the US – I feel I'm supposed to have an opinion. However, I have ''never'' encountered the microwaving of water as mentioned here, and I would not object to it as supposedly problematic for tea-quality reasons. I'd object for reasons of common sense. What mystifies me is the idea that kettles are tea-specific. They are for heating water, not making tea. Coffee uses hot water. Pasta, rice and potatoes use hot water. Peas, carrots, cabbage, sweetcorn... &lt;br /&gt;
&lt;br /&gt;
Baking bread often involves a pan of steaming water in the oven.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;But I can boil water in a pan for cooking pasta or vegetables.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Yes, but you'll be waiting a l-o-o-o-ng time. I'll heat my water in the kettle, pour it into the now-hot pan, cook my pasta, and I'll be eating before your water is boiling. &lt;br /&gt;
&lt;br /&gt;
A kettle is not a tea-making item any more than a frying pan is an omelette-making item; tea is simply one of the things you can make with water from a kettle. Hot water is a basic civilised human commodity, predating recorded history. That we should live in a mechanised world, and the Consumer Nation doesn't have water-boiling appliances as standard (saying instead &amp;quot;I don't have a kettle because I don't drink tea&amp;quot;) is ludicrous. &lt;br /&gt;
&lt;br /&gt;
Using a microwave rather than buying a kettle is a bit like not buying a hammer for driving in nails because you've got a big pair of pliers that will do. Sure, they're heavy lumps of metal than live in your toolbag, but they're not the right thing. &lt;br /&gt;
&lt;br /&gt;
The Brits, incidentally, are not tea lovers. They are prolific consumers of awful tea that actual tea lovers wouldn't use for cleaning their drains. The most enthusiastic tea enthusiasts I've ever met were from Maryland.&lt;br /&gt;
&lt;br /&gt;
It's all just social ceremony in the UK. Milk first, tea first, must use a saucer, must use a pot...tea is a British religion, not a British drink.[[User:Yorkshire Pudding|Yorkshire Pudding]] ([[User talk:Yorkshire Pudding|talk]]) 14:23, 10 December 2024 (UTC)&lt;br /&gt;
: How long does it take you to boil water for, let's say enough water for four people's worth of pasta, using an electric kettle?  I reckon that's about 4 liters of water?  I'm genuinely curious.  Now also double the time, because as mentioned in the explanation, American outlets produce half the power of British outlets.  And let me not fail to mention that almost all American homes have either special higher power outlets for stoves or gas powered stoves, and frequently have special high-power outlets for microwaves as well.  4 liters of water to boil takes about 5-6 minutes on a low-end American stove, about 3-4 minutes on a gas stove, and about 2 minutes on an induction stove.  None of which strikes me as a particularly long time, especially when the most popular varieties of pasta in America all need to be boiled for 8+ minutes. How does this compare to twice the length of time as your electric kettle?  Because if your Electric Kettle actually allows you to be eating your pasta before our water has even boiled, that would require your kettle to boil water in around -2min to -6min. And if your electric kettle can time travel, then that is truly an astonishing device.  Honestly my takeaway from this is that British Stoves must be apparently heated by a single candle if &amp;quot;boiling water for pasta&amp;quot; is considered to take a &amp;quot;l-o-o-o-ng time&amp;quot;. {{unsigned ip|162.158.126.161|21:51, 10 December 2024 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
I wonder what the Brits would feel about repurposing a single-cup coffee maker.  These days, I usually put a tea bag in a mug and place it in a Keurig machine and run it (without a K-cup, of course) to deliver the hot water.  Probably the wrong temperature, but fast and easy and the result is good enough.  [[User:Shamino|Shamino]] ([[User talk:Shamino|talk]]) 14:52, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Would any British person care to evaluate my tea making practices? Boil water in electric kettle. Pour water over teabag, allow to steep, remove teabag. Add sugar and ice cubes. [[User:RegularSizedGuy|RegularSizedGuy]] ([[User talk:RegularSizedGuy|talk]]) 15:54, 10 December 2024 (UTC)&lt;br /&gt;
:...well, seems a fairly standard &amp;quot;making one mug of tea for oneself&amp;quot; process. It lacks a milk-adding stage (thus no arguments about whether before or after the water). Removing the teabag at that point probably means it's not going to become a Builders' Brew, which is your choicd. Sugar is ok. And... Waitwhat... ''Ice Cubes?!?'' ...can I get back to you on that? [[Special:Contributions/172.70.162.163|172.70.162.163]] 17:50, 10 December 2024 (UTC)  &lt;br /&gt;
&lt;br /&gt;
I can confirm (by inadvertent experiments conducted on flatmates) that they indeed do not like tea being make in the kettle.  What really makes them angry though is making coffee in the teapot.  It ruins the taste of the teapot forever apparently.  There is also a faction that insists that a teapot should never be washed, and washing it invokes a lesser anger.[[User:Gopher|Gopher]] ([[User talk:Gopher|talk]]) 15:56, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
On rare occasions where I don't have a kettle available, I use a microwave oven to boil water for tea. But it doesn't look and taste quite the same, and often leaves an ugly foam at the surface when the tea bag is added. This phenomenon is investigated here: https://cooking.stackexchange.com/a/22264. So the British might be right... Disclaimer: I'm neither from the UK nor from the US. [[Special:Contributions/172.69.68.126|172.69.68.126]] 16:16, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a [https://www.tumblr.com/elodieunderglass/669449994039853056/wizardlyghost-silverjirachi-pidoop tumblr thread] about the topic of teamaking in microwaves, kettles, etc. Funnily enough it showed up in my Instagram reels feed just a few hours before this comic was posted. I was thinking perhaps Randall saw it too and was inspired by it? Both of them have to deal with the different ways of making tea and how &amp;quot;absurd&amp;quot; or &amp;quot;unconventional&amp;quot; (etc.) they are. Even if Randall didn't have it in mind, it's certainly a funny little coincidence. [[User:Pie Guy|Pie Guy]] ([[User talk:Pie Guy|talk]]) 16:36, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I'm guessing my occasional summertime practice of filling a gallon jar with water and lots of tea bags, setting it on the back porch in the sun for a few hours until the water turns dark brown, then putting the whole thing in the refrigerator and later drinking it over ice would be toward the more angry end of the spectrum.[[Special:Contributions/172.70.126.204|172.70.126.204]] 16:39, 10 December 2024 (UTC)Pat&lt;br /&gt;
:I think the &amp;quot;in the sun for a few hours&amp;quot; part might just be too incomprehensible to most of us, here in Britain. If we ''have'' a few hours of sun (and we're not abroad and deliberately sunburning ourselves on the beach/beside the pool in our week at the Costa Lotta budget-all-inclusivs holiday) then we're either fuming at our workdesks complaining about the louts stripping down to their shirtsleeves and splashing in the town-centre fountains or we're on our lunch-break and we ''are'' the louts stripping down to our shirtsleeves and splashing in the town-centre fountains. In neither case would sun-stewed tea be a priority. [[Special:Contributions/172.70.162.163|172.70.162.163]] 17:50, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Perhaps it's worth to mention how dangerous it is to boil water in a microwave. https://tastecooking.com/dangerous-microwave-water/&lt;br /&gt;
[[User:Mestafais|Mestafais]] ([[User talk:Mestafais|talk]]) 15:22, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
There are several comics with unmarked scales. It would be interesting if the descriptions started using pixels to point where each mark is along the line. As a rough estimate, the four points mentioned here are at X-values: 90px, 115px, 345px, and 645px, indicating that the pot method is 10% as infuriating as the chalice method - or that making tea in a pot ten times would be equally as infuriating as making it once in a chalice (at least, assuming the kettle method causes zero furons. I know of {{w|hedons and dolors}}. I guess 'furons' are a unit of fury, right? [[Special:Contributions/172.70.46.236|172.70.46.236]] 16:11, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Interesting to see the interest in editing this. Had a quick check of the last ten comics, looking at the number of edits made in the first 14 hours (the exact time this page has been around, as of me starting the check) and in total, and extrapolated to edits/day (in the case of total edits, both just to the latest edit and right up to 'now'). Thought it'd be interesting to give you my results (assuming I tallied/etc correctly)...&lt;br /&gt;
*3022 - 14hr: '''61''' ('''105'''/day); Total: 61 ('''105/day...''')&lt;br /&gt;
*3021 - 14hr: 23 (39/day); Total: 39 (11/day -&amp;gt; 10/day)&lt;br /&gt;
*3020 - 14hr: 22 (38/day); Total: 36 (10/day -&amp;gt; 6/day)&lt;br /&gt;
*3019 - 14hr: 28 (48/day); Total: 54 (17/day -&amp;gt; 7/day)&lt;br /&gt;
*3018 - 14hr: 14 (24/day); Total: 48 (4/day -&amp;gt; 4/day)&lt;br /&gt;
*3017 - 14hr: 29 (50/day); Total: 33 (32/day -&amp;gt; 3/day)&lt;br /&gt;
*3016 - 14hr: 28 (48/day); Total: 46 (4/day -&amp;gt; 3/day)&lt;br /&gt;
*3015 - 14hr: 20 (32/day); Total: '''83''' (5/day -&amp;gt; 5/day)&lt;br /&gt;
*3014 - 14hr: 40 (69/day); Total: 66 (16/day -&amp;gt; 3/day)&lt;br /&gt;
*3013 - 14hr: 36 (61/day); Total: 68 (3/day -&amp;gt; 3/day)&lt;br /&gt;
...of course, the first 14 hours probably biases to British readers/editors, and it was too fiddly to add up ''|bytes changed per edit|'' as a more useful metric than mere number of pokes. But quite a bit of interest we already have here. More edits in fourteen hours than any other article less than fourteen (indeed, 17!) days old... ;) Seems to have really hit a mark, this subject! [[Special:Contributions/172.69.195.201|172.69.195.201]] 19:21, 10 December 2024 (UTC)&lt;br /&gt;
:This one is super weird. I may be weirdness incarnate... but... [[User:Maybe Bill Cipher|An anonymous Gravity Falls expert]] ([[User talk:Maybe Bill Cipher|talk]]) 19:33, 10 December 2024 (UTC)&lt;br /&gt;
:Well obviously. I mean this one ''really'' matters![[Special:Contributions/141.101.98.23|141.101.98.23]] 08:52, 11 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
I would argue that the more pessimistic interpretation of the two low-end options makes sense, rather than the more generous versions offered in the current explanation. I think the first one does literally mean making tea in the kettle, and the second one does mean boiling water in a teapot. Making tea *using* a kettle isn't anything to get mad about, it's the default practice. That should put it at the zero point of the line, but it isn't, it's to the right. On the other hand, obviously making tea *in* the kettle would incite a modest amount of rage (on the scale of zero to microwaving a mug), and it makes sense that boiling water in a teapot would incite about 50% more, as shown.[[Special:Contributions/172.69.134.160|172.69.134.160]] 19:51, 10 December 2024 (UTC)&lt;br /&gt;
: An American making tea in the correct way by boiling water in the kettle and then pouring that into a teapot with the tea would still probably conspire to make it badly and make the Brit angry. And Brits really do get quite upset about the idea of tea made with water boiled in a stovetop pan.[[Special:Contributions/141.101.98.23|141.101.98.23]] 08:55, 11 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
There is a standard for making tea, ISO 3103: https://en.wikipedia.org/wiki/ISO_3103, and apparently from the Royal Society of Chemistry.&lt;br /&gt;
And, of course, it must be really hot for in infinite improbability drive to work properly.&lt;br /&gt;
[[User:Lordpishky|Lordpishky]] ([[User talk:Lordpishky|talk]]) 20:24, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
All this blather and not one bit about that quintessential Kiwi staple, [https://en.wiktionary.org/wiki/gumboot_tea gumboot tea]. Boil the kettle (about the size of a Dutch oven), throw in handfuls of leaf black tea, and let it sit until consumed. Reheat as needed. One sip, and the source of the Commonwealth aversion to the insane Yankee habit of drinking tea black is immediately apparent. [[Special:Contributions/172.70.123.8|172.70.123.8]] 20:31, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
So, I have a Quooker that boils my water. Add tea (leaves)... done. But *don't* add milk, please.... spoil... {{unsigned|Palmpje|20:50, 10 December 2024 (UTC)}}&lt;br /&gt;
&lt;br /&gt;
''Ultimately, the real difference comes down to convenience: In the USA, the standard voltage for electric appliances (including an electric kettle) is 120 volts, while it is twice that (240 volts in practice, though nominally 230V) in the UK. Since the amperage for an electric kettle is the the same in both countries (15 amps), this means that an equivalent kettle in the UK has twice the power (3.2kw versus 1.6kw), and can heat the water in a fraction of the time. Meanwhile, a standard microwave has a similar power in both countries (from 700 to 1000 watts), for reasons unrelated to the supply voltage it is equipped to use. Therefore, heating a small cup in a microwave might take a few moments longer than a kettle in the USA, but is many times slower to wait for compared to using an electric kettle in the UK.'' Electric kettles are a bit faster in the UK due to the voltage difference, but it's not that much and I highly doubt speed is the main concern here. The main 'convenience' difference between boiling water in a kettle vs a microwave is quantity: Brits usually don't just make one cup/mug of tea! On the rare occasion Americans drink tea, it's more often just the one person drinking one cup, making a microwave a convenient choice.[[Special:Contributions/162.158.233.90|162.158.233.90]] 21:40, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
Add in some [https://www.foodandwine.com/why-you-should-add-salt-to-tea-8549735 salt]! '''[[User:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:9pt;color:#A9C6CA&amp;quot;&amp;gt;42.book.addict&amp;lt;/span&amp;gt;]]&amp;lt;sup&amp;gt;[[User talk:42.book.addict|&amp;lt;span style=&amp;quot;font-family:Cormorant Garamond;font-size:6pt;color:#516874&amp;quot;&amp;gt;Talk to me!&amp;lt;/span&amp;gt;]]&amp;lt;/sup&amp;gt;''' 21:44, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
It's not about voltage. They use different gauge heater wire to get the Watts wanted/allowed. &lt;br /&gt;
&lt;br /&gt;
The classic UK plug is nominal 13 Amps. (The circuits may be nominal 16A but there is now better insulation than in 1949.) At 230 Volts that would be 3KW (near enuff). That will be the &amp;quot;legal numbers&amp;quot;. At 240V it may be 3,250W true. OTOH a 10V sag might be expected in all but the poshest wall-wiring. &lt;br /&gt;
&lt;br /&gt;
amazon.co.uk sells kettles nearly all rated 3KW. Exceptions are Greepas at 1800W (&amp;quot;However, some customers have reported that it's very slow to boil&amp;quot;); also Philips 2200W, Daewoo 1400W, and OLEGA 1500W 'Fast Boiling'.&lt;br /&gt;
&lt;br /&gt;
OTOH!!&lt;br /&gt;
&lt;br /&gt;
On Amazon US site nearly all kettles are 1500W, a few lower like 1100W. At assumed 120V 1500W is 12.5Amps. 15Amp circuits are still common in older houses (despite changes in 1960s) but we supposed to de-rate for 'long-running' (not clearly specified in old code) so 12 Amps is in a ballpark. &lt;br /&gt;
&lt;br /&gt;
Note that all US kettles are lower power than all but the tamest UK kettles. Essentially half power. &lt;br /&gt;
&lt;br /&gt;
And IIRC, the 13/16A rating which allows super-power kettles in the UK was not for tea but for &amp;quot;electric fire&amp;quot;, room heat. In post-War rebuilding, smokey coal was already depreciated in cities, steam plumbing and chimneys are expensive. Copper wire is costly too, but you &amp;quot;have&amp;quot; to have electric, and low-cost plans like ring-main were investigated.&lt;br /&gt;
[[User:PRR|PRR]] ([[User talk:PRR|talk]]) 22:44, 10 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
&amp;quot;accept that tea-appropriate boiling water can be obtained directly from the sink's plumbing&amp;quot; - unless it comes out literally at boiling temperature, it isn't tea appropriate. I live in France now, and order catering bags of tea from Amazon because French tea is dismally awful, not helped at all by this fairly widespread belief that black tea steeps at 60C. When I share tea bags with friends, I have to keep reminding them, boiling! Boiling! So, see, there are worse things than using a microwave to heat the water... [[Special:Contributions/172.71.126.208|172.71.126.208]] 06:00, 11 December 2024 (UTC)&lt;br /&gt;
:Not boiling - OFF boiling. Higher than 60C, yes, but if you put actually boiling water straight on to the tea (or worse, boil the water with the tea in it), that's at least as bad. (And how far off the boil exactly depends on the type of tea.) [[Special:Contributions/141.101.98.22|141.101.98.22]] 09:00, 11 December 2024 (UTC)&lt;br /&gt;
&lt;br /&gt;
What's up with the &amp;quot;We want to ensure'''[sic]''' the good people of the U.K&amp;quot;?&lt;br /&gt;
I really can't see the US Embassy insuring them for any amount, so what gives? [[User:Ryden|Ryden]] ([[User talk:Ryden|talk]]) 12:27, 11 December 2024 (UTC)&lt;/div&gt;</summary>
		<author><name>Ryden</name></author>	</entry>

	</feed>