=Calculator24

Math calculator

Random Number Generator

Generate one or many random integers within an inclusive range.

Inputs

Your numbers

Live

Instant result. Updates while you type.

Your result

Updated now

Enter your numbers.

Complete guide

Random number generator with unique-number mode

Choose an inclusive minimum and maximum, request up to 100 integers and decide whether repeats are allowed. Every generated list is shown in order and can be reproduced from its shared link.

Editorial checkInclusive bounds, duplicate handling and browser entropy path checked against the Web Crypto specification.Updated September 9, 2026

How to generate random numbers

Enter whole-number bounds, choose the list length and press Generate numbers. The first generated value appears as the main result while the full ordered list appears below.

  1. Set the inclusive minimum.
  2. Set the inclusive maximum.
  3. Choose 1–100 results.
  4. Turn duplicates off for a sample without replacement.

Inclusive ranges

Both endpoints can appear. A range from 1 to 10 contains ten possible integers, while −5 to 5 contains eleven because zero is included.

range size = maximum − minimum + 1

Duplicates and unique sampling

When duplicates are allowed, each draw is independent and a value may appear more than once. With duplicates disabled, values are removed after selection. The requested count cannot exceed the range size.

Browser randomness and shared lists

A new request begins with a seed supplied through the browser Web Crypto API. Calculator24 then produces a deterministic sequence from that seed, allowing a copied link to recreate the exact same list for verification.

Limits and secure use

The generator limits lists to 100 values and bounds to plus or minus one billion so the output stays inspectable. It is intended for ordinary selection and simulation, not cryptographic secrets, regulated drawings or audited gambling.

Common range examples

Every example includes both endpoints.
UseMinimumMaximumPossible integers
Standard die166
Percentage0100101
Signed small range−101021
Playing-card position15252

Frequently asked questions

Are the minimum and maximum included?

Yes. Either endpoint may be generated.

Can I generate numbers without repeats?

Yes. Choose No under Allow duplicates; the requested count must fit inside the range.

Can the same shared link reproduce a list?

Yes. Generator settings and the seed are included in the link.

Can I generate negative integers?

Yes. The supported bounds extend from −1,000,000,000 to 1,000,000,000.

Is this suitable for passwords or gambling?

No. Use a dedicated audited system for security credentials, lotteries or regulated gambling.

What to keep in mind

Useful for games, sampling and classroom work. This browser tool is not certified for lotteries, gambling or security key generation.

Results display up to 8 decimal places; exported numbers preserve calculation precision. This is a calculation summary, not an official certificate.

Sources and references

Keep exploring