I measured how quickly I can read english characters and it was like 180 per minute. Or 3 per second. It's actually suprisingly hard to quickly say out loud random letters from a list of jumbled letters like "pdlsnrhuiwrufwknvfiteowqokwtkldmcwfcjvsfdcsaao" and keep it up for a minute.
I am specifically speaking to others who went and started learning Japanese. At what speed can you read hiragana? Or just kana in general (from a jumbled list one at a time, not actual words).
I think it's pretty good since I haven't been learning for all that long. I am to get to like 120 per minute soon.
If you know how to run java programs, I have included some quick source code I wrote for randomly generating some hiragana. I excluded the ya, yu, yo suffixes. Just remove the if statement if you want to include those:
import java.lang.Math.*;
public class Jap
{
public static void main (String [] args)
{
String array[] = {"あ", "い", "う", "え", "お", "か", "き", "く", "け", "こ", "さ", "し", "す", "せ", "そ", "ま", "み", "む", "め", "も", "ら", "り", "る", "れ", "ろ", "な", "に", "ぬ", "ね", "の", "た", "ち", "つ", "て", "と", "は", "ひ", "ふ", "へ", "ほ", "や", "ゆ", "よ", "わ", "を", "ん", "が", "ぎ", "ぐ", "げ", "ご", "ざ", "じ", "ず", "ぜ", "ぞ", "だ", "ぢ", "づ", "で", "ど", "ば", "び", "ぶ", "べ", "ぼ", "ぱ", "ぴ", "ぷ", "ぺ", "ぽ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", "きゃ", "きゅ", "きょ", "ぎゃ", "ぎゅ", "ぎょ", "しゃ", "しゅ", "しょ", "じゃ", "じゅ", "じょ", "みゃ", "みゅ", "みょ", "りゃ",
"りゅ", "りょ", "にゃ", "にゅ", "にょ", "ちゃ", "ちゅ", "ちょ", "ぢゃ", "ぢゅ", "ぢょ", "ひゃ", "ひゅ", "ひょ", "びゃ", "びゅ", "びょ", "ぴゃ", "ぴゅ", "ぴょ"};
for (int i = 0; i < 300; i++)
{
int index = (((int)(Math.random() * 1000.0)) % 127);
if (index > 90)
{
index = index - 36;
}
System.out.print(array[index]);
}
System.out.println("\n\nDone...");
}
}