Unstoppable Domains โ€” Expired Auctions

LLL.txt files - 3 letter generators

Spaceship Spaceship
Watch

fewsteps

Established Member
Impact
4
Hello all,

I'm looking for a txt file with all the possible 3 letters combinations (without numbers)
so basically with the 26^3 combinations... could you please help me?

I have found some online tools but I need to do that manually for all the 26 letters...

thank you
 
2
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
AfternicAfternic
I do it via PHP script, which generates me whatever I want. Here is all the possible 3 letter combinations list. 17 576 combinations.
 

Attachments

  • lll.txt
    85.8 KB · Views: 8,265
17
•••
thank you very much!
 
1
•••
You're welcome!
 
1
•••
<?php

$blah = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z');
$extension = '.com';

for ($a=0; $a<26; $a++)
{
for ($b=0; $b<26; $b++)
{
for ($c=0; $c<26; $c++)
{
echo $blah[$a] . $blah[$b] . $blah[$c] . $extension . "\n";
}
}
}
?>
 
5
•••
function generateRandomString($length = 3) {
$characters = 'abcdefgpijklmnopqrstuxyz';
$charactersLength = strlen($characters);
$randomString = '';
for ($i = 0; $i < $length; $i++) {
$randomString .= $characters[rand(0, $charactersLength - 1)];
}
return $randomString;
}
 
2
•••
<?php

$blah = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z');
$extension = '.com';

for ($a=0; $a<26; $a++)
{
for ($b=0; $b<26; $b++)
{
for ($c=0; $c<26; $c++)
{
echo $blah[$a] . $blah[$b] . $blah[$c] . $extension . "\n";
}
}
}
?>

Thank you , and i added </br> tag insteadof \n as it was not working

but this was showing all 1 letter and 2 letter too ..can we restrict this to only 3 letter ?

i know i can filter with excel , but still it is helpful if the script can do the task as we can use it later to generate 4 letter as well

thanks
 
1
•••
I've built this simple and free tool https://domainpat.com/ , it lets you easily generate domain names from any pattern (more than 100,000) and TLD with just a click. No coding or saving files neededโ€”just enter your pattern and copy your favorites instantly.
 
Last edited:
0
•••
I've built this simple and free tool https://domainpat.com/ , it lets you easily generate domain names from any pattern (more than 100,000) and TLD with just a click. No coding or saving files neededโ€”just enter your pattern and copy your favorites instantly.
GREAT work
 
0
•••
0
•••
It looks nice but is very impractical - you can't download the result as a file and you can only copy one page of domains at a time. Maybe add instant availability check and redirect to a registration site and you might even make some money on affiliate commissions.
 
1
•••
It looks nice but is very impractical - you can't download the result as a file and you can only copy one page of domains at a time. Maybe add instant availability check and redirect to a registration site and you might even make some money on affiliate commissions.
Yes, I plan to add that later. I can provide a full list without any problem. I kept it this way because GoDaddy's bulk domain search allows a maximum of 2,000 words at a time. This way, it's easier for anyone to copy and paste each page from the table into GoDaddy until I roll out the version of availability check!
 
0
•••
0
•••
Appraise.net
Domain Recover
NameMaxi - Your Domain Has Buyers
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back