Tagged Questions
The encode tag has no wiki summary.
44
votes
3answers
32k views
JSON stringify missing from jQuery 1.4.1?
Apparently jQuery has the ability to decode a given object or string into a JSON object. However, I have a JS object that I need to POST back to the server and I find no utility in jQuery that wraps ...
29
votes
13answers
32k views
QR code (2D barcode) coding and decoding algorithms?
Looking for free/opensource code or description of algorithms to code (simple) and decode (hard) the 2D barcode QR code.
It doesn't seem like a trivial problem, but it's so popular in Japan that ...
27
votes
2answers
11k views
Code for decoding/encoding a modified base64 URL
I want to base64 encode data to put it in a URL and then decode it within my HttpHandler.
I have found that Base64 Encoding allows for a '/' character which will mess up my UriTemplate matching. ...
15
votes
4answers
23k views
QR codes image generator in java (open source but no GPL)
I'm seeking an open source QR codes image generator component in java (J2SE), but the open source licence mustn't be a GPL licence (needs to be included in a close source project).
BTW, i can't ...
11
votes
3answers
3k views
How to convert a string or integer to binary in Ruby?
Let's say I need to make integers 0..9 and math operators + - * / binary strings. So 0 = 0000, 1 = 0001, etc.. Is there a way to do this with Ruby 1.8.6 without using a library?
11
votes
3answers
11k views
AJAX POST and Plus Sign ( + ) — How to Encode?
I'm POSTing the contents of a form field via AJAX to a PHP script and using Javascript encode(field_contents). The problem is that any plus signs are being stripped out and replaced by spaces. How ...
9
votes
7answers
1k views
Ideas to create a small (<10 digits), not (very) secure “hash”
I'm working on an online event ticketing system, where users will be able to self print his tickets and show up at the event where it will be scanned (barcode) and ideally the person will get in. My ...
9
votes
4answers
7k views
Python UnicodeDecodeError - Am I misunderstanding encode?
Any thoughts on why this isn't working? I really thought 'ignore' would do the right thing.
>>> 'add \x93Monitoring\x93 to list '.encode('latin-1','ignore')
Traceback (most recent call ...
8
votes
6answers
2k views
URL Escaping Chinese/Japanese Unicode Characters for Internet Explorer
I'm trying to URL-escape (percent-encode) non-ascii characters in several URLs I'm dealing with. I'm working with a flash application that loads resources like images and sound clips from these URLs. ...
7
votes
5answers
4k views
Is it necessary to “escape” character “<” and “>” for javascript string?
Sometimes, server side will generate strings to be embedded in inline JavaScript code. For example, if "UserName" should be generated by ASP.NET. Then it looks like.
<script>
var username = ...
7
votes
5answers
23k views
rails: how to html encode/escape a string? is there a built-in?
Yay, silly question time.
So I have an untrusted string that I simply want to show as text in an html page. All I need to do is escape the chars '<' and '&' as html entities.
The less fuss ...
6
votes
2answers
407 views
A code that is a word forwards & a different word backwards
For a present, I am trying to create a code that reads as a certain word forwards and a different word backwards. An example (0,1,2 are the available symbols):
D = 02, E = 01, H = 201, L = 1, O = ...
5
votes
4answers
639 views
Delphi: Encoding Strings as Python do
I want to encode strings as Python do.
Python code is this:
def EncodeToUTF(inputstr):
uns = inputstr.decode('iso-8859-2')
utfs = uns.encode('utf-8')
return utfs
This is very simple.
But in ...
5
votes
4answers
1k views
Alt attribute encoding with JavaScript
Html entities must be encoded in alt attribute of an image in HTML page. So
<img id="formula" alt="A → B" src="formula.png" />
will work well.
On the other hand, the same JavaScript ...
5
votes
3answers
3k views
Strange \n in base64 encoded string in Ruby
The inbuilt Base64 library in Ruby is adding some '\n's. I'm unable to find out the reason. For this special example:
irb(main):001:0> require 'rubygems'
=> true
irb(main):002:0> require ...
5
votes
3answers
667 views
How would I implement something similar to the Objective-C @encode() compiler directive in ANSI C?
The @encode directive returns a const char * which is a coded type descriptor of the various elements of the datatype that was passed in. Example follows:
struct test
{ int ti ;
char tc ;
} ;
...
4
votes
2answers
30 views
PHP string comparison between two different types of encoding
I am attempting to match a string I know to a web page title in php.
I have the following string:
ℛobinhood
I have a page title that looks like this:
ℛobinhood
but is actually encoded like this ...
4
votes
2answers
537 views
How to encode a URL in WinForms?
I'm creating a Windows application and I need to pass an encoded URL. But I'm not sure how to encode it in WinForms C#?
4
votes
1answer
310 views
Is there a way to check a file encoding using JavaScript?
Here's my case: I'm working with a very big project that contains lots of files. Some of these files are encoded in UTF-8, other in ANSI. We need to convert all the files to UTF-8, because we decided ...
4
votes
1answer
272 views
How use perl to process a file whose format is similar to unicode?
I have a legacy program, and after running it, it will generate a log file. Now I need to analysis this log file.
But the file format is very strange. Please see the following,I used vi to open it, ...
4
votes
2answers
368 views
best way to escape data JS->PHP->MySQL and vice versa
what functions i have to use to encode/decode/escape/stripslash data for following purposes?
when calling a PHP script from JS like: page.php?data=don't_use_#_and_%_in_URL_params
when a PHP script ...
4
votes
1answer
2k views
What is the equivalent of JavaScript's decodeURIcomponent in PHP?
I have some string with unicode characters and was endcoded with javascript decodeURIcomponent.But i dont find any equivalent in php to decode it.Is there any solution for this?
4
votes
2answers
916 views
How to encode series of images into VP8 using WebM VP8 Encoder API? (C/C++)
How to transcode RGB images into VP8 frames (Keyframe + some dependent frames)?
So I created some images how to turn tham into VP8 now?
4
votes
2answers
539 views
How to convert all characters to their html entity equivalent using PHP
I want to convert this hello@domain.com to
...
4
votes
2answers
240 views
why my code show messy code
class sss(webapp.RequestHandler):
def get(self):
url = "http://www.google.com/"
result = urlfetch.fetch(url)
if result.status_code == 200:
...
4
votes
4answers
1k views
PHP unserialize fails with non-encoded characters?
$ser = 'a:2:{i:0;s:5:"héllö";i:1;s:5:"wörld";}'; // fails
$ser2 = 'a:2:{i:0;s:5:"hello";i:1;s:5:"world";}'; // works
$out = unserialize($ser);
$out2 = unserialize($ser2);
print_r($out);
...
4
votes
3answers
839 views
How can one prevent double encoding of html entities when they are allowed in the input
How can I prevent double encoding of html entities, or fix them programmatically?
I am using the encode() function from the HTML::Entities perl module to encode HTML entities in user input. The ...
4
votes
4answers
3k views
How to encode media in base64 given URL in Ruby
I'm trying to upload an image to PingFM. Their documentation says:
media – base64 encoded media data.
I can access this image via the URL. I tried (practically guessed) this:
...
3
votes
1answer
88 views
Why won't some MP4 videos start streaming until the entire file is downloaded?
I'm working on an application where users upload a video and play it back the browser using jwplayer, jplayer, flowplayer, etc. Some videos play immediately, while others wait until the entire video ...
3
votes
2answers
467 views
PHP “pretty print” json_encode
I'm working on a script that creates a JSON file. Right now I'm just using json_encode (php 5.2.x) to encode an array into json output. Then I print the returned value to a file and save it. Problem ...
3
votes
2answers
222 views
How can I encrypt/decrypt PHP GET parameters?
I have a regular request, for example:
http://myserver.com/index.php?var1=85842.23&var2=212.235&name=Teddie&valid=1
I would like those $_GET parameters be encrypted to something like ...
3
votes
3answers
636 views
Create png image from QRCode for iPhone
I've been using zxing to decode QRCodes. I've also now the got the encoder working and can create the QRCode which contains the encoded data.
I'm asking if anyone knows how to convert this QRCOde ...
3
votes
1answer
140 views
UTF8 encoding to base64string and storing to database
I'm currently trying to encode data before storing it to my database.
try
{
byte[] byteEncString = new byte[_strToConvert.Length];
byteEncString = ...
3
votes
1answer
104 views
Question about the “utf-8”-behavior
#!/usr/bin/env perl
use warnings;
use 5.012;
use Encode qw(encode);
no warnings qw(utf8);
my $c = "\x{ffff}";
my $utf_8 = encode( 'utf-8', $c );
my $utf8 = encode( 'utf8', $c );
say "utf-8 : @{[ ...
3
votes
2answers
336 views
How do I encode Japanese into something like “日本に行って”? (UTF-8)
As the question in the title states.
I can't seem to find the answer with any of the following:
php headers, css headers, html headers, mysql charsets (to utf8_general_ci), or
<form ...
3
votes
4answers
2k views
JSON encode/decode base64 encode/decode in JavaScript
Is there JSON encode/decode base64 encode/decode function in JavaScript?
3
votes
2answers
111 views
How can I determine differences between different encodings/serializations/etc?
There's all types of decoders for data formats such as Base64, the ASP EventValidation object, XML serialization, or otherwise? Is there a simple test I can do?
For example, I have a string here, ...
3
votes
3answers
348 views
Encrypt printable text so result is still printable (can be typed)
I want to encrypt some info for a licensing system and I want the result to be able to be typed in by the user.
Update: This operation must be reversible (decrypt-able)
E.g.,
Encrypt ( ...
3
votes
2answers
334 views
make python replace un-encodable chars with a string by default
I want to make python ignore chars it can't encode, by simply replacing them with the string "<could not encode>".
E.g, assuming the default encoding is ascii, the command
'%s is the ...
3
votes
2answers
474 views
How can I call a standard .NET assembly within SQL
I am having an issue whereby a column within a table of mine has data which is encoded using the System.Xml.XmlConvert.Encode method.
Now I need to manipulate this data within SQL and have not found ...
3
votes
2answers
4k views
How do I encode UTF-8 using the XStream framework?
Per XStream's FAQ its default parser does not preserve UTF-8 document encoding, and one must provide their own encoder. How does one do this?
Thanks!
3
votes
6answers
4k views
How do I convert an audio stream to MP3 using Java?
Is it possible using Java to convert a real time audio stream from the mixer to MP3?
It has to be converted chunk by chunk otherwise the memory will be exhausted.
I already know how to record but ...
2
votes
1answer
53 views
Convert to utf-8 - from email
Im using Zend_Mail_Storage_Pop3 to retrieve mail messages.
My subject on a mail is
Foo/æøå
$message->getHeader('content-type')
gives me text/plain; charset=ISO-8859-1; format=flowed
Before any ...
2
votes
3answers
58 views
what kind of encode declaration should I input in python
I learned from the websitethat I should add the code declaration in python when i wan't to input friendly unicode characters: http://www.python.org/dev/peps/pep-0263/, but I still feel confused about ...
2
votes
2answers
112 views
(Javascript) How can I show only 1 character inside textbox whatever I type?
I just wanna use a simple HTML Textbox <input type="text" /> as a Password Box (<input type="password" />) do.Showing the * or black circles for every single character i type inside.
...
2
votes
1answer
66 views
Encoding / obfuscate a javascript object
I am considering giving users code to embed certain javascript elements from my website. They are all customised versions of a generic base configuration.
I have got the code working as I want, but ...
2
votes
1answer
519 views
iPhone Emoji Unicode Encoding UTF
I'm encoding Unicode Emoji characters into a string and loading that into a webview..
for the encoding I'm using "NSUTF8StringEncoding" But the emoji characters just show up as jiberish unicode ...
2
votes
4answers
115 views
Python convert file content to unicode form
For example, I have a file a.js whose content is:
Hello, 你好, bye.
Which contains two Chinese characters whose unicode form is \u4f60\u597d
I want to write a python program which convert the ...
2
votes
2answers
80 views
encoding string
"afile" is a previously existing file.
handle=open("afile",'r+b')
data=handle.readline()
handle.close()
# signgenerator is a hashlib.md5() object
signgenerator.update(data)
...
2
votes
2answers
81 views
Getting a Server's encoding using Java
Is it possible to programmatically get the encoding scheme used by, say Tomcat, to decode a GET parameter?
I know you can force Tomcat to use specific encodings, but this is for when i can't control ...