最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

unicode - How to get a random character from a range in JavaScript? - Stack Overflow

programmeradmin1浏览0评论

Looking at Katakana characters () 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.

Looking at Katakana characters (http://en.wikipedia/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.

Share edited Dec 16, 2020 at 6:55 Programmer 3712 silver badges9 bronze badges asked Oct 18, 2013 at 11:32 magician11magician11 4,6346 gold badges30 silver badges43 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 11

You can do this :

String.fromCharCode(0x30A0 + Math.random() * (0x30FF-0x30A0+1));

Note that 0x30FF-0x30A0 is 95, and if you want the last one you must add 1 (Math.random returns a result in [0,1[), which makes 96, not 60.

You can do this:

String.fromCharCode(Math.floor(Math.random() * 65535));

Because maximum hex is 65536.

Maximum hex: 16 ^ 4

发布评论

评论列表(0)

  1. 暂无评论