Link search generator?

Hey I have a link with I (it’s a capital i) and l (its and lower L) and it is 30 letters long, does anyone know how to make a code so it will automaticly search or generate all posible lines so you can search it up on google?
https://i.imgur.com/ickJ0R0.png

Hope some of you guys can help me!

represent i as 0, L as 1. u have 30bits infos, total ~10e9 cases
brute force over it: represent int as binary string with such assumptions
9: 1001 => LiiL
10: 1010 => LiLi

Thank you!