The windows-1255 tag has no wiki summary.
3
votes
4answers
1k views
Why does Perl's LWP gives me a different encoding than the original website?
Lets say i have this code:
use strict;
use LWP qw ( get );
my $content = get ( "http://www.msn.co.il" );
print STDERR $content;
The error log shows something like ...
3
votes
5answers
555 views
Java string encoding conversion within a webpage
I have a webpage that is encoded (through its header) as WIN-1255.
A Java program creates text string that are automatically embedded in the page. The problem is that the original strings are encoded ...
1
vote
1answer
181 views
problem injecting UTF8 encoded JSONP into a Win 1255 encoded webpage
I am developing a third-party service embedded in websites as a JS snippet, that amongst other things need to fetch some jsonp data from my PHP server, and display the text contained in the json ...