Looking at Katakana characters (http://en.wikipedia.org/wiki/Katakana#Unicode) how would I get a random character from a Unicode range?
I'm close with
String.fromCharCode(0x30A0 + Math.random() * 60);
The '60' is kind of a rough guess of the range. Is there a way to code in "U+30A0 ... U+30FF" ?
Thanks.