this will work, might crash your browser though: $dec = 0; $hex = 0; while ($hex <= FFFFFF) { $hex = dechex($dec); while (strlen($hex) < 6) { $hex = "0" . $hex; } echo "#".$hex."<br/>"; ++$dec; } PHP: