Top "Decoding" questions

Decoding is the reverse of encoding.

Decode Base64 string in node.js

I'm trying to decode a base64 string representing an image stored in a db. I tried many libraries and solutions …

javascript node.js base64 decoding
UTF-8 Decode for php

I am fetching posts from the Tumblr API and am running into an encoding issue with the returned "body" of …

php utf-8 decoding
Android Media Codec video decoding

This is my first question so please let me know if I missed anything! Using Android API 16's new Media …

android video media codec decoding
Java URLDecoder throws exception when used with a string containing a %

I have a problem with the URLDecoder of Java. I am escaping a String in JavaScript, and send it to …

java url decoding
effective solution: base32 encoding in php

I am looking for a base32 function/class for php. the different classes and function that i found are all …

php url encoding parameters decoding
Detect if a file is an MP3 file?

I'm writing a C++ library for decoding and encoding audio between different formats/codecs. I have a routine for quickly …

header mp3 detect decoding flac
base64 encoding that doesn't use "+/=" (plus or equals) characters?

I need to encode a string of about 1000 characters that can be any byte value (00-FF). I don't want to …

encoding base64 decoding
Perl: utf8::decode vs. Encode::decode

I am having some interesting results trying to discern the differences between using Encode::decode("utf8", $var) and utf8::decode($…

perl encoding utf-8 decoding
=?ISO-8859-1 in mail subject

I'm acquiring the unread mails I have in my GMail account through PHP and its method imap_open When I …

php encoding decoding
Decoding and Encoding issue. Different implementations of Base64 Class in android.util.* and java.util.*?

I am writing an App which does the following with a given String str: encode(encrypt(encode(stringToBytearray(str)))); The …

java android encoding base64 decoding