I'm looking to create a unique ID to use in a URL but don't want to use UUID. A bit like how toddle creates a unique id for nodes and classes.
I usually create them by generating a random number in a formula, multiplying it by 100000 and then round it, which usually produces a 6 digit unique ID.
My thinking is just to convert the number output to a string and then encode it as base64.
Would that work? Anything I should be mindful of and is there a better way?