Top "Decoding" questions

Decoding is the reverse of encoding.

How to stop an html TEXTAREA from decoding html entities

I have a strange problem: In the database, I have a literal ampersand lt semicolon: <div whenever its …

html decoding html-entities
Decoding Raw H264 stream in android?

I have a project where I have been asked to display a video stream in android, the stream is raw …

android ffmpeg h.264 rtsp decoding
How to decode an email attachment received as a Base64 text

I have an email backup file which is purely text. How can I retrieve the document (PDF, images, word files) …

email base64 attachment decoding
Shortest possible encoded string with decode possibility (shorten url) using only PHP

I'm looking for a method that encodes an string to shortest possible length and lets it be decodable (pure PHP, …

php encoding decoding
Base64URL decoding via JavaScript?

So I'm stumped. I know there's lots of Base64 encoders/decoders for JS, but not for the modified (and Facebook-favored) …

javascript url base64 decoding
Node.js Base64 Image decoding and writing to file

I'm sending the contents of this Flex form (Don't ask why) over to node. There is a post paramteter called "…

image apache-flex node.js base64 decoding
How to decode a base64 encoded certificate

Below is my requirement: Program will have an XML file as input with 3 tags: OrgContent, Signature and Certificate. All these …

java base64 certificate x509 decoding
Encoding in R like Python ("ord" and "chr")

I was wondering how to do encoding and decoding in R. In Python, we can use ord('a') and chr(97) …

r encoding decoding
How to Decode the & from a URL so that header() works (urldecode not working)

I have the following URL: $url = 'http://mysite.com/?p=welcome&x=1&y=2'; I need …

php header decoding urldecode
Python - Replace non-ascii character in string (»)

I need to replace in a string the character "»" with a whitespace, but I still get an error. This is …

python regex string encoding decoding