Beginner

Password Combination Calculator — Password Strength & Entropy

Find out how many unique passwords are possible for a given character set and length, measure the entropy in bits, and see how long a brute-force attack at 1 billion guesses per second would take.
Lowercase a-z = 26, + uppercase = 52, + digits = 62, + symbols ≈ 95

Character repetition

Possible combinations
218,340,105,584,896

Total unique passwords of this length from this character set

Entropy (bits)
47.63 bits
Estimated crack time (1B guesses/s)
2.53 days
623,844238,32814,776,336916,132,83256,800,235,5843,521,614,606,208218,340,105,584,896Combinations grow as password length increases (length 1 to 8)
Step by step
  1. 1

    Character set size (n)

    62
  2. 2

    Password length (r)

    8
  3. 3

    Combinations = nʳ

    62⁸ = 218,340,105,584,896
    With repetition each position is independent, giving n choices r times.
Results are estimates for general information only and are not professional advice — always verify important results independently before relying on them. Read the full disclaimer.
Quick answer

How does this calculator work?

Possible passwords = n^r (with repetition) or n!/(n−r)! (without), where n is character-set size and r is length. Entropy = log₂(combinations). A 12-character mixed alphanumeric+symbol password has ~78 bits of entropy, requiring ~40 billion years to brute-force at 1B guesses/s.

Formula
With repetition: combinations = n^r • Without repetition: P(n,r) = n × (n−1) × … × (n−r+1) • Entropy = log₂(combinations)
How this is calculated

Password strength comes down to how many unique passwords are possible — the larger this number, the harder brute-force guessing becomes. When characters can repeat (the default for real passwords), every position has n choices independently, so the count is n raised to the power of the password length r: n^r. If each character must appear at most once, you multiply n × (n−1) × … × (n−r+1), the falling-factorial (also called a permutation without replacement).

Entropy converts that count to bits: log₂(combinations). Each extra bit doubles the search space. Security guidelines generally recommend at least 60–80 bits of entropy for a strong password. At 26 lowercase letters and 8 characters you get only about 38 bits; expanding to all 95 printable ASCII characters raises it to about 53 bits; a 12-character mixed-case alphanumeric+symbol password tops 78 bits.

The crack-time estimate divides the combination count by 1 billion guesses per second — a typical offline attack rate on a modern GPU. The real rate depends on the hashing algorithm used: bcrypt or Argon2 slow attacks by orders of magnitude, while an unsalted MD5 can be attacked at trillions per second. Use the estimate as a relative guide, not an absolute guarantee.

Frequently asked questions

Entropy (in bits) measures unpredictability. Each extra bit doubles the number of guesses an attacker must try on average. A password with 60 bits of entropy requires about 2^59 ≈ 576 quadrillion guesses to crack — far beyond a casual attack.

Doubling the character set size (e.g., adding uppercase to lowercase) adds log₂(2) = 1 bit of entropy per character. Adding one more character to the length adds log₂(n) bits. Length has a bigger impact per unit of effort.

It assumes 1 billion guesses per second, typical for an offline GPU attack against fast hash functions. Against slow hashes (bcrypt, Argon2) the real rate is millions of times slower; against no hash it can be trillions per second. Use the figure for comparisons, not hard predictions.

Also known as

password combinations calculator
password entropy calculator
how many password combinations
password strength calculator
brute force time calculator
number of possible passwords
character set combinations
password security estimator

APA

TG we-Calculate Editorial Team. (2026). Password Combination Calculator — Password Strength & Entropy [Online calculator]. TG we-Calculate. https://we-calculate.com/calculator/password-combination-calculator

Chicago

TG we-Calculate Editorial Team. "Password Combination Calculator — Password Strength & Entropy." TG we-Calculate. 2026. https://we-calculate.com/calculator/password-combination-calculator.

IEEE

TG we-Calculate Editorial Team, "Password Combination Calculator — Password Strength & Entropy," TG we-Calculate, 2026. [Online]. Available: https://we-calculate.com/calculator/password-combination-calculator

BibTeX

@misc{wecalculate_password_combination_calculator, title = {Password Combination Calculator — Password Strength & Entropy}, author = {{TG we-Calculate Editorial Team}}, howpublished = {\url{https://we-calculate.com/calculator/password-combination-calculator}}, year = {2026}, note = {TG we-Calculate} }

Did this calculator help you?