Humans make mistakes. When you require them to provide some unique generated ID identifying some entity. For example: Order A: has id ABC1234 Order B: has id BCD1235 They can make typos, they can provide string for ex: A123, B123, 1 2 3, "Order id B 12/3" Then for automatic system its a challenge to identify the original ID. My questions is are there any known algorithms/techniques. To generate a
-unique human readable ID (not sha or md5) -with fault tolerance. That you can from a subset of character still decode the original id. -case insensitive
A visual example of fault tolerance are QR codes, when some part of qr code damaged you can still read the message.
The goals is to avoid tools/algorithms like for ex. elastic search, levenstein and increase the chance to decode the original id even when the customer makes a typo, and reduce the chance that some other "original id" will be provided.