0
votes
2answers
24 views
Charset and UTF-8 in a downloaded text file on a Mac
We have a PHP/MYSQL application that collects user input, including special characters like ø,ü,ñ, etc Database is capturing them, and they can be seen via PHPmyAdmin. Download on …
7
votes
6answers
149 views
Guessing the encoding of text represented as byte[] in Java
Given an array of bytes representing text in some unknown encoding (usually UTF-8 or ISO-8859-1, but not necessarily so), what is the best way to obtain a guess for the most likely …
0
votes
1answer
22 views
Passing foreign language characters to/from a database
I am trying to allow users to enter Hebrew characters into certain fields in an HTML form (processed using java). I did some research, and it is apparent that the following tag ne …
1
vote
6answers
82 views
How to Generate all the characters in the UTF-8 charset in .net
I have been given the task of generating all the characters in the UTF-8 character set to test how a system handles each of them. I do not have much experience with character enc …
0
votes
1answer
58 views
Windows-1251 file inside UTF-8 site?
Hello everyone Masters Of Web Delevopment :)
I have a piece of PHP script that fetches last 10 played songs from my winamp. This script is inside file (lets call it "lastplayed.php …
0
votes
2answers
39 views
How to do Ruby 1.8.6 UTF-8 URL encoding?
It seems that CGI::escape does not encode using UTF-8 (Unaware of which encoding it uses). And there seems to be no way to configure encoding type in CGI for ruby 1.8.6
How do I a …
2
votes
1answer
74 views
UTF-8 output on Windows XP console
The following code shows unexpected behaviour on my machine (I'm using Visual
C++ 2008 SP1 on Windows XP here):
int main() {
SetConsoleOutputCP( CP_UTF8 );
std::cout & …
2
votes
3answers
75 views
How can I convert an XML document from Latin-1 to UTF-8 in Perl?
We at the company want to convert all the sites we are hosting from Latin-1 to UTF-8. After a ot of googling, we have our Perl script almost complete. The only thing that is missin …
1
vote
2answers
45 views
nolatin characters in xml output
Edit: I hardcoded the charcter and use repsonse writer to write it, it still comes out to be
K�nigsberger
response.setCharacterEncoding("UTF-8");
response.setContentType( …
2
votes
2answers
74 views
utf-8 decoding in java
I'm trying to pass parameters from a PHP middle tier to a java backend that understands J2EE. I'm writing the controller code in Groovy. In there, I'm trying to decode some paramet …
1
vote
2answers
36 views
Encoding strings in XML from Oracle query
I'm producing XML right from PL/SQL in Oracle.
What is the preferred way of ensuring that outputted strings are XML-conformant, with regards to special characters and character …
0
votes
2answers
51 views
PHP input filtering - checking ascii vs checking utf8
I need to insure that all my strings are utf8. Would it be better to check that input coming from a user is ascii-like or that it is utf8-like?
//KohanaPHP
function is_ascii($str) …
0
votes
2answers
53 views
JavaScript DOM XSS Injection validation
Is this regular expression enough to catch all cross site scripting attempts when embedding HTML into the DOM. eg: Such as with document.write()
(javascript:|<\s*script.*?\s*&g …
1
vote
1answer
38 views
How to convert with Ruby accented characters in HTML special entities
How can I do this on Ruby?
puts some_method("ò")
# => "ò"
In other words convert an accented character like ò to his HTML version: ò
I tried like this: …
0
votes
1answer
11 views
PHP mbstring.func_overload vs using mbstring functions
I want to conform my site's string handling to support other languages per UTF-8. It seems that the best way to do this is to forsake all the standard string functions.
So I have …
