Standard UUIDs are long, and you can't select the whole thing by double clicking.
e.g. 123e4567-e89b-12d3-a456-426655440000
I like shorter IDs.
I like being able to double click an ID to select it.
My question is: are there any issues with encoding a standard ID into a 22(ish) character long base62 alphanumeric string?
e.g. 71jbvv7LfRKYp19gtRLtkn
EDIT: Added Context
Our needs are for general data storage in NoSQL data storage services such as DynamoDB. Collision should not happen, but my understanding is that collision risk with UUIDs is negligible. Standard UUIDs would suit our needs, so what I'm asking is... is there any difference, or extra risk or unforeseen issues with encoding in base62 that doesn't exist with standard UUIDs?
Thanks.