decoding Questions
3
Solved
90% of my website pages use the utf8 encoding feature for compile an DataTable.
$a[] = array_map('utf8_encode', $item);
With the old version 8.0 of php everything was fine, in the new version it g...
Godred asked 20/12, 2022 at 15:55
6
So I'm stumped. I know there's lots of Base64 encoders/decoders for JS, but not for the modified (and Facebook-favored) Base64URL variation. So far searching across stackoverflow has come up dry.
...
Droplet asked 8/3, 2011 at 15:33
4
Solved
I have this piece of code to fetch a Page HTML from an URL, however the response content looks encoded.
Code:
HttpWebRequest xhr = (HttpWebRequest) WebRequest.Create(new Uri("https://www.youtube...
3
Since two weeks, I'm trying and reading to solve this problem, but everything I tried didn't worked :-(
I'm using python 2.7.
I do have, as far as I understand, a base64-string from the format: ...
7
Solved
First, I want to let everyone know that I am using an aspx engine not a Razor engine.
I have a table within a form. One of my textbox contains html tags like
</br>Phone: </br> 814-888-9...
Masqat asked 26/7, 2012 at 15:47
8
Solved
Is there a function in PHP that can decode Unicode escape sequences like "\u00ed" to "í" and all other similar occurrences?
I found similar question here but is doesn't seem to work.
6
Solved
i thought, that it is impossible to decode md5 hashes, but i found tools, which decode them here. but i have no idea, how they do it in such a short period of time(it takes about a second).
Help ...
4
Solved
I'm trying to write a scraper , but I'm having issues with encoding. When I tried to copy the string I was looking for into my text file, python2.7 told me it didn't recognize the encoding, despite...
Lithometeor asked 2/6, 2014 at 22:26
7
Solved
I have a strange problem:
In the database, I have a literal ampersand lt semicolon:
&lt;div
whenever its printed into a html textarea tag, the source code of the page shows the &gt; a...
Garbo asked 15/12, 2011 at 11:6
4
Solved
Essentially I made a request to a website and got a byte response back: b'[{"geonameId:"703448"}..........'. I'm confused because although it is of type byte, it is very human readable and ap...
Sufficient asked 29/7, 2015 at 18:35
5
Solved
What is the purpose of padding in base64 encoding. The following is the extract from wikipedia:
"An additional pad character is allocated which may be used to force the encoded output into an inte...
3
Solved
I receive a JSON as a buffer. I want to parse it into a readable or JSON object.
However, despite all techniques (JSON.stringify(), toString('utf8'), I am not able to get it done.
here is what I ...
Jaclynjaco asked 8/3, 2019 at 8:9
2
Solved
Package JSON::XS uses JSON::XS::Boolean objects to represent true/false. Is it possible to force decoding true/false json values as 1/0 Perl numbers?
#!/usr/bin/env perl
use JSON::XS;
use Data::D...
3
Solved
Is there a way to convert a netty ByteBuf to a String and vice versa?
public String toString(ByteBuf b){
//return b enconded to a String
}
public Bytebuf ToByteBuff(String s){
//return s deco...
6
Solved
Iam having trouble decoding Japanese message, the final output seems to be a garbage value.
Encoded ISO-2022-JP Quoted Printable Message:
"=82=B1=82=EA=82=CD=92P=82=C8=82=E9=83e=83X=83g=82=C5=82=...
Subway asked 9/1, 2012 at 22:4
4
Solved
I have the following Java code:
byte[] signatureBytes = getSignature();
String signatureString = new String(signatureBytes, "UTF8");
byte[] signatureStringBytes = signatureString.getBytes("UTF8")...
4
Base64 encode can be achieved by
$ echo Some_data_to_be_converted | base64
U29tZV9kYXRhX3RvX2JlIF9jb252ZXJ0ZWQK
And Base64 decode can be achieved by
$ echo U29tZV9kYXRhX3RvX2JlIF9jb252ZXJ0ZWQK...
3
Solved
Can someone please explain why decoding Base64 giving a broken pdf?
I need to find the way how to decode Base64 and get pdf out.
When i use this service
https://emn178.github.io/online-tools/base...
5
Solved
I have to encode an array of bytes to a base64 string (and decode this string) on an old Delphi 2007.
How could I do?
Further Informations:
I've tried synapse (As suggested here Binary to Base64 ...
Chara asked 4/5, 2015 at 21:32
7
Solved
I'm working with mails, and names and subjects sometimes come q-encoded, like this:
=?UTF-8?Q?J=2E_Pablo_Fern=C3=A1ndez?=
Is there a way to decode them in Ruby? It seems TMail should take care o...
3
Solved
Is there any way in Python 3 to replace general language specific characters for English letters?
For example, I've got function get_city(IP), that returns city name connected with given IP. It con...
Actinomycosis asked 13/2, 2017 at 13:49
7
Solved
I need to encode a string of about 1000 characters that can be any byte value (00-FF). I don't want to use Hex because it's not dense enough. the problem with base64 as I understand it is that it i...
2
TeamViewer allows to record sessions in a proprietary format with the file extension .tvs. It can be converted to AVI with any codec installed on the local computer (using TeamViewer), but not MP4 ...
Thirtythree asked 1/6, 2015 at 14:8
3
I did not know how to decode the result from keycloak public key and the certs.
Which one should I use to decode? I only have access_token.
And have been try with the cert and public_key
Result fr...
5
Solved
I am making an application in which i am getting an Mjpg Images from Live IP Camera in Android.
The problem is that since when i get the Image in the form of ByteArray. How can I display the Image...
1 Next >
© 2022 - 2025 — McMap. All rights reserved.