Tagged Questions
0
votes
0answers
17 views
Convert file name in UTF-8
My site has a lot of photos named in UTF-8, ex: Đường-vào-Măng-Buk-2.jpg
But on the server, this file is named in other strange characters: -ɦ¦ß+Øng-v+áo-M-âng-Buk-2.jpg
By this reason, these ...
0
votes
0answers
19 views
What is utf8 encode - decode?
I'm importing my phpbb utf8 DB into a vb latin1_swedish_ci DB. In the converter I've these two lines (default):
define('use_utf8_encode', false);
define('use_utf8_decode', true);
How should I set ...
0
votes
1answer
26 views
http response coming back obfuscated
I am making a call to a clients api, and it comes back like this
"user_firstname": "à¸à¸£à¸±à¸à¸à¸²à¸à¸´",
"user_lastname": "ศรีà"
I have no idea what to do with this.
I have tried every kind ...
-2
votes
1answer
64 views
How to decode this string to utf-8 string? [closed]
I have this code:
string URL = "http://translate.google.com/m?hl=vi&sl=en&tl=vi&ie=UTF-8&prev=_m&q=song";
string s = "";
WebClient client = new WebClient();
...
-2
votes
2answers
67 views
How to decode('utf-8') [closed]
I've tried using the .decode('utf-8') function on a URL after I have opened the url up. Everytime I do it, it says the module doesn't exist. I have imported the urllib also. I want to do this so I can ...
3
votes
2answers
118 views
Replacing = with '\x' and then decoding in python
I fetched the subject of an email message using python modules and received string
'=D8=B3=D9=84=D8=A7=D9=85_=DA=A9=D8=AC=D8=A7=D8=A6=DB=8C?='
I know the string is encoded in 'utf-8'. Python has ...
-2
votes
1answer
56 views
Python Response Decoding
For the following lines that use urllib:
# some request object exists
response = urllib.request.urlopen(request)
html = response.read().decode("utf8")
What format of string does read() return? I've ...
2
votes
3answers
89 views
nodejs decode (child processes use)
I use spawn for JScript (from windows)
My problem with decode text
???? ??? T-SQL Microsoft SQL Server 2012
???? ??? - russian text.
var worker,path = require('path'), spawn = ...
1
vote
1answer
58 views
Decode zero-terminated UTF-8 string from any position in a byte array
I am looking for a method in the FCL similar to Encoding.UTF8.GetString(bytes, index, count), but one that does not require a count argument and instead assumes that the string at the given index is ...
-2
votes
5answers
536 views
Convert UTF-8 encoded string to human readable string
How to convert any UTF8 strings to readable strings.
Like : ⬠(in UTF8) is €
I tried using Charset but not working.
0
votes
1answer
115 views
Decode UTF8 text
I have string like "CHARSET=UTF-8;ENCODING=QUOTED-PRINTABLE:=58=2D=54=65=73=74 ". I need to decode the last part of it which is (58=2D=54=65=73=74) using c#. this string comes from contact file ...
0
votes
0answers
123 views
xcode decode mixed hebrew and english utf8 string
I'm new to XCode, and I'm having some difficulties with decoding UTF8 strings with hebrew. I have an NSString taken from a field in a sqlite database that has a mix of hebrew and english words. The ...
0
votes
1answer
118 views
Python encoding problems in xml
I have a media player that I would like to send what I'm playing to trakt.tv, everything works fine except for foreign letters in the title/path. The system is running python 2.7.3
def ...
1
vote
1answer
132 views
Am I using utf8::is_utf8 correctly?
Does this work correctly? Some error messages are already decode and some need do be decoded do get a correct output.
#!/usr/bin/env perl
use warnings;
use strict;
use utf8;
use open qw(:utf8 :std);
...
0
votes
1answer
212 views
How can I decode CP852 to UTF-8 in node.js?
Is there any way to convert text from CP852 to UTF-8 in node or in client webpage?
0
votes
1answer
158 views
Decoding string in PHP which is encoded in Python
I want to decode a string in PHP, but the issue is the string which I need to decode in PHP is encoded in Python.
So how can I get the correct decoded string?
The string encoded in Python is putting ...
2
votes
1answer
106 views
PHP & KML file: how to decode utf8 encoded name in KML file?
I have to parse KML file in PHP. The name of placemarks in the KML file is UTF8 encoded like this:
<name>xD0<U+1ED3>ng ThxE1p</name>
which should be "Đồng Tháp". How can I ...
1
vote
1answer
125 views
How “Expensive” is Perl's Encode::Detect::Detector
I've been having problems with "gremlins" from different encodings getting mixed into form input and data from a database within a Perl program. At first, I wasn't decoding, and smart quotes and ...
0
votes
2answers
371 views
How do I decode UTF-8?
I have a UTF-8-encoded string.
This string is first saved to a file and then sent via Apache to a process written in C++, which receives it using Curl.
How can I decode the string in the C++ process?
...
1
vote
0answers
390 views
iOS and Java - How to decode UTF-8 encoded NSData on server programmed in Java?
I am sending JSON from my iPhone app to my server which is Play Framework's Java app and deployed on Heroku Cloud.
Here is my code i am using in my App.
self.url = [NSURL ...
0
votes
2answers
173 views
PHP: need to decode a string with utf chars embedded
I have a string which is decoded as base36, ie 0-9a-z,
any other characters were decoded as follows: a unicode character code, converted to base36 and preceeded by capital letter 'A', and followed by ...
3
votes
2answers
711 views
Perl UTF8 encoding error. Neither LWP::UserAgent->decoded_content or Encode::decode work. Other ideas?
I have an encoding issue in perl when trying to pull back global addresses from webpages using both LWP::Useragent and Encode for character encoding. I've tried googling solutions but nothing seems ...
1
vote
1answer
2k views
perl: convert a string to utf-8 for json decode
I'm crawling a website and collecting information from its JSON. The results are saved in a hash. But some of the pages give me "malformed UTF-8 character in JSON string" error. I notice that the the ...
0
votes
3answers
327 views
Django and UnicodeDecodeError
What i do...
___I have an upload form from where i upload .zip files with pictures. And everytime when there is a file title with some non-ascii character äüõ i get a unicode decode error.
title ...
0
votes
1answer
2k views
UnicodeDecodeError: 'ascii' codec can't decode byte 0x96 in position 10: ordinal not in range(128)
How can I get data from a UTF-8-encoded MySQL database without getting the UnicodeDecodeError? I'm making a website using Python and HTML templates. Here's the code I used to get stuff from the ...
3
votes
2answers
3k views
PHP replacing special characters like à->a, è->e
I have php document signup.php which save the content from form (in form.php document) to MySQL base. The problem arises when I want to reformat the input content. I want do decode UTF-8 charachters ...
4
votes
1answer
775 views
WireShark - Can I decode UTF-8 data in the packets?
In Wireshark, how can I see non-ASCI characters in a packet? some of my data in the packets is in the UTF-8 encoding and I would like Wireshark to recognize it.
Is there a plugin for it?
I found ...
-1
votes
2answers
1k views
javascript chinese/japanese character decoding
I created a JSONP function on the server and returns a UTF-8 encoded json object like this
applyLocalization({"Name":"%E5%90%8D%E5%89%8D","Age":"%E5%B9%B4%E9%BD%A2"});
on my javascript on the ...
0
votes
1answer
464 views
utf8_general_ci causes broken characters
$sql = "SELECT bdId, bdTitle FROM board";
$result = dbQuery($sql);
for($i = 0; $i < 4; $i++)
{
$row = dbFetchAssoc($result);
$newsId ...
0
votes
1answer
184 views
Dealing with UTF-8 file in Ruby
8 gods and goddesses,
I have a csv file is is rumoured to be encoded in Win UTF-8. I need to apply a bunch of reg exps and other sorts of string/array manipulation to it and then have it output ...
0
votes
2answers
253 views
convert text from utf to read-able text
I have some UTF-Text starting with "ef bb bf". How can I turn this message to human read-able text? vim, gedit, etc. interpret the file as plain text and show all the ef-text even when I force them to ...
2
votes
2answers
429 views
Decode this type of string in python
=?UTF-8?B?TmV3IFBlcnNvbmFsIE1lc3NhZ2U6IE1vbmcgYW5oIHTDrG0gbOG6oWkgY2h1eWVudGIub3JnIQ==?=
Hi, I have this string which is what returned from an IMAP command - do anyone know how to decode this in ...
2
votes
2answers
593 views
Can't decode html entities in title
I am having trouble decoding entities in the title from this youtube video:
http://www.youtube.com/watch?v=p7NMsywVQhY
Here is my code:
$url = 'http://www.youtube.com/watch?v=p7NMsywVQhY';
$html = ...
4
votes
1answer
3k views
UnicodeDecodeError at / 'utf8' codec can't decode bytes
This is a django project.
I have a simple view with 1 line in it : render_to_response('index.html'). And this index.html contains characters like "öüä" which trigger the error 'utf8' codec can't ...
1
vote
1answer
450 views
Python, Django and pyodbc: invalid characters
I am connecting to a MS SQL server database using pyodbc. The error im getting is the following
invalid byte sequence for encoding "UTF8": 0x93
HINT: This error can also happen if the byte sequence ...
0
votes
3answers
1k views
Loading utf-8 encoded text into MySQL table
I have a large CSV file that I am going to load it into a MySQL table. However, these data are encoded into utf-8 format, because they include some non-english characters.
I have already set the ...
0
votes
2answers
560 views
How do I encode characters into numeric character reference format in Perl?
I found this sample script from How can I guess the encoding of a string in Perl?
#!C:\perl\bin
use utf8;
use Encode qw(encode PERLQQ XMLCREF);
my $string = 'This year I went to 北京 Perl workshop.';
...
2
votes
2answers
5k views
UTF8 Encoding in Android when invoking REST webservice
I'm invoking a rest WS that returns XML. Some elements have strings include special characters like áãç etc...
When I get the information via browser all of it is shown properly but when invoking it ...
2
votes
3answers
101 views
0
votes
3answers
1k views
“Unserialize” this string : %C3%A9%C3%A0%C3%A9%C3%A0
I have a really annoying problem:
I had a string éàéà which I passed in the serialize function.
It gave me the string %C3%A9%C3%A0%C3%A9%C3%A0.
How can I come back (either in JS or PHP) to éàéà to ...
3
votes
3answers
3k views
How to decode such strange string to UTF-8? (PHP)
So I have %u041E%u043B%u0435%u0433%20%u042F%u043A how to save it into real UTF-8 or (better for me to HTML entities)?
3
votes
2answers
882 views
Python file input string: how to handle escaped unicode characters?
In a text file (test.txt), my string looks like this:
Gro\u00DFbritannien
Reading it, python escapes the backslash:
>>> file = open('test.txt', 'r')
>>> input = file.readline()
...
2
votes
5answers
868 views
What is the fool proof way to convert some string (utf-8 or else) to a simple ASCII string in python
Inside my python scrip, I get some string back from a function which I didn't write. The encoding of it varies. I need to convert it to ascii format. Is there some fool-proof way of doing this? I ...
1
vote
2answers
2k views
Convert from hex string to unicode
How can i convert the 'dead' string to an unicode string u'\xde\xad'?
Doing this:
from binascii import unhexlify
out = ''.join(x for x in [unhexlify('de'), unhexlify('ad')])
creates a <type ...
0
votes
4answers
3k views
utf-8 decoding problem in php
I got a .vcf file with parts encoded as UTF-8:
CATEGORIES;CHARSET=UTF-8:Straße & –dienste
Now "–" should be a "-" and "Straße" should convert to "Straße".
I tried
utf8_decode()
iconv()
...
6
votes
3answers
5k views
Decoding double encoded utf8 in Python
I've got a problem with strings that I get from one of my clients over xmlrpc. He sends me utf8 strings that are encoded twice :( so when I get them in python I have an unicode object that has to be ...


