Are there any alternative to Base64 encoding?
I don't have any issues using Base64, just want to be aware of alternatives.
|
|
There is also a Base-85 encoding, or Ascii85. It's like base-64, but instead of 24 bits encoded with 4 "base-64 digits", 32 bits are encoded with 5 "base-85 digits". The advantage is that it is a little more compact: for every 96 bits of binary data encoded, one character of encoded output is saved. The drawback is that more characters are used as "digits", so when base-85–encoded in other formats like URLs, conflicts are more likely. |
|||
|
|
|
The advantage of Base64 is that it is still quite compact (three bytes become four characters). A disadvantage in some situations are some of characters it uses (+, =, /) and that it is case-sensitive. Hex-encoding ("Base16") uses only 0-9,A-F, but then every byte is encoded as two characters. |
|||
|
|
|
It depends on what you're looking for. Assuming that you want something that encodes into 7-bit ASCII:
I'm sure there are others... Also if you are just trying to embed binary data in XML you might consider something like SOAP MTOM. |
|||||||
|
|
There are myriads of encoding alternatives. You can devise any roll-your-own encoding scheme that you like. e.g. you could invent an encoding scheme in which each character is represented by the bitwise complement of the four-byte unicode index of that character. You know, 0x00000020 (the space character) gets encoded as 0xffffffdf. Question is, what purpose do you NEED an encoding for ? The example scheme I mentioned is not very likely to be the best fit for your particular purpose. Other schemes, say, UTF-8 or UTF-16, might do, but depending on your situation, ancient-style code pages might do equally well from a functional viewpoint, and even better from a performance perspective. |
|||
|
|
|
Uuencode used to be popular in mail clients, but I haven't seen it used in a while. There's also yEnc, but I don't know much about it. |
|||
|
|
|
If you just need to encode and decode a small amount of bytes without using Base64, consider this SO thread as a possible solution. I am using this to encode password bytes coming out of Just use some arbitrary radix (I used 16) and do not stick to |
|||
|
|