I'm writing up a formal proposal. Part of it requires creating completely random UUIDs (for privacy reasons) and encoding them into a compressed human-readable/writable format, like Base64.
However, Base64 permits variants of visually confusable characters; I want the encoding to e.g. permit only one of [number 1, lowercase and uppercase letter i, and lower case L] and only one of [number 0, lowercase and uppcase letter O].
Does there already exist such an encoding (formally documented)? I know it's more or less trivial to create a new one that does this, but I would prefer to make reference to an extant standard if possible