vote up 0 vote down star

Can unicode characters be en/decoded with base64?
I have attempted to encode the following string: الله but when I decoded it all I got was '????'

flag

It would depend on how the Base64 routine is grabbing the data, what's the platform and the code? The answer is yes, they can, of course. – Vinko Vrsalovic Nov 20 '08 at 12:32
The data is being encoded in Delphi and decoded/used in PHP – Unkwntech Nov 20 '08 at 12:35
Sorry, no clue about Delphi. But I provided an answer that proves that this problem has nothing to do with base64 – Vinko Vrsalovic Nov 20 '08 at 12:40
Although it might be how are you decoding on PHP. Can't you provide an actual example with code? Unicode issues can be tricky, especially across languages/platforms – Vinko Vrsalovic Nov 20 '08 at 12:40
For the PHP side of things, I am using the built in base64_decode function. – Unkwntech Nov 20 '08 at 12:42

3 Answers

vote up 2 vote down check

Base64 converts binary to text. If you want to convert text to a base64 format, you'll need to convert the text to binary using some appropriate encoding (e.g. UTF-8, UTF-16) first.

link|flag
vote up 1 vote down

You didn't specify which language(s) you're using, but try converting the string to a byte array (however that's done in your language of choice) and then base64 encoding that byte array.

link|flag
vote up 0 vote down

Of course they can. Depends on how your language or base64 routine handles unicode input. For example, python's b64 routines expect an encoded string (as base64 encodes binary to text, not unicode codepoints to text)

   
    Python 2.5.1 (r251:54863, Jul 31 2008, 22:53:39)
    [GCC 4.1.2 (Ubuntu 4.1.2-0ubuntu4)] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> a = 'ûñö'
    >>> import base64
    >>> base64.b64encode(a)
    'w7vDscO2'
    >>> base64.b64decode('w7vDscO2')
    '\xc3\xbb\xc3\xb1\xc3\xb6'
    >>> print '\xc3\xbb\xc3\xb1\xc3\xb6'
    ûñö
    >>>     
    >>> u'üñô'
    u'\xfc\xf1\xf4'
    >>> base64.b64encode(u'\xfc\xf1\xf4')
    Traceback (most recent call last):
      File "", line 1, in 
      File "/usr/lib/python2.5/base64.py", line 53, in b64encode
        encoded = binascii.b2a_base64(s)[:-1]
    UnicodeEncodeError: 'ascii' codec can't encode characters in position
    0-2: ordinal not in range(128)
    >>> base64.b64encode(u'\xfc\xf1\xf4'.encode('utf-8'))
    'w7zDscO0'
    >>> base64.b64decode('w7zDscO0')
    '\xc3\xbc\xc3\xb1\xc3\xb4'
    >>> print base64.b64decode('w7zDscO0')
    üñô
    >>> a = 'الله'
    >>> a
    '\xd8\xa7\xd9\x84\xd9\x84\xd9\x87'
    >>> base64.b64encode(a)
    '2KfZhNmE2Yc='
    >>> b = base64.b64encode(a)
    >>> print base64.b64decode(b)
    الله
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.