Using ASCII encoding, how many characters are there in a GUID?
I'm interested in the Microsoft style, which includes the curly brackets and dashes.
|
|
From MSDN:
From Wikipedia:
So a total of 38 characters in the typical hexadecimal encoding with curly braces. |
|||||||||||
|
|
Sorry if it's a bit off topic, and sorry for digging up this old issue, but I stumbled upon this thread while looking for an answer similar to this: As Adam Davis stated, the Microsoft style is HEX encoding (with braces and dashes to make it more readable) that can be displayed using a subset of ASCII characters (0-9 and A-F), but this is not specifically ASCII encoding. I guess it's important to remember that the microsoft style of displaying GUID's is only a representation of a GUID, which is actually a 16 byte integral value (as Micheal Trausch stated). You can also present it in different, more compact ways by converting the bytes into a different character set (like ASCII). Theoretically you can display each byte as an extended ASCII character (255 characters), which would allow you to save a GUID as a 16 character length string. It wouldn't be very readable though because it would include whitespace characters (CR, space, tab, etc) and other special characters, so this would only make sense if you want to efficiently save a GUID in a non-human readable character format, for example in in a database that doesn't natively support GUID's or fast matching of small binary values: http://en.wikipedia.org/wiki/Extended_ASCII IMHO the most readable way to display a GUID more compact would be to use Base64 encoding, which allows you to save it in a string with a length of 22 characters, and would make it look like this:
But as Jeff Atwood states on his site, you can also push a GUID into an ASCII85 encoded string with 20 characters:
For more inspiration, see: http://www.codinghorror.com/blog/2005/10/equipping-our-ascii-armor.html |
|||||||
|
|
As Adam mentioned from the MSDN quote, UUIDs are 128-bit values. This means that they take 16 bytes of RAM to hold a value. A text representation will take 32 bytes (two bytes for each single byte), plus the 4 hyphens, plus the two brackets if you want to include those; this amounts to 38 bytes. Just keep in mind that if you are exposing UUIDs to users of your software, they may provide the UUID with or without the brackets. If you're storing the value anywhere, it's best to store it as the 16-byte binary representation. If you are interoperating with other UUID implementations, you may want to use the basic text format for interoperability, since different implementations do different things to the order of bytes when storing a binary UUID value. |
||||
|
|
|
I didn't like all the unusual characters, so I created my own GUID Generator that uses my own base 32 encoder. It is a 22 character value that looks like the following: AC9ATUMCHECFPU2SU7AZX7 It doesn't contain any lowercase characters or zero (0), one (1), oh (O), or aye (I). Since there are no lowercase characters, there is no el (l). It always starts with an alpha character, so it can be used in more places that an id that starts with a number. Since it has no minus (-) or equal (=), etc ... you are not limited in that way either. With base 32, I can use shift and mask to generate. It incorporates a randomly seeded synchronized rolling count of a number from 0 to 32767, current time in MS since Jan 1, 2013, and the computer's MAC address. Since many values are cached or require simple operations like shifts and subtraction, it is quickly generated. I feel it is as unique as I have seen anywhere. I just found it useful to be readable in circumstances where I have to type in the values someplace. |
||||
|
|