The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
2answers
32 views

ios-How to split & from decoded string?

I just want to split & in the below decodeToken and finally I want to get key and value NSString* decodedToken = [decodedToken stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; ...
0
votes
3answers
52 views

How do decode html entities in java? [duplicate]

I'm trying to decode html entities in Java, but I noticed that URLDecoder.decode(String stringToDecode, String charset); is deprecated. What should I use instead of it?
0
votes
1answer
30 views

Python Saving JSON Files as UTF-8

I'm trying to output some UTF-8 characters to a JSON file. When I save the file they're being written like this: {"some_key": "Enviar invitaci\u00f3n privada"} The above is valid and works. When I ...
3
votes
1answer
71 views

Catalan characters à and è don't work with php imagestringup - how to decode them?

When I call the below code with $text with Spanish I got correct text with image but When I call the same code with $text with Catalan I don't get correct text in the image. I understand that Spanish ...
1
vote
1answer
19 views

Coded Email utf-8 [closed]

I received an email from a friend of mine recently (a colleague from the MSc in Computing I have just finished), displayed in UTF-8. There are a lot of white question marks in black diamonds in it, ...
0
votes
1answer
44 views

Converting wacky chars to UTF-8 code reference

I'm using pbkdf2(), and I need to print its output to debug an error. it generates strange string like "�O� BIa���!J��". Neither htmlentities() or htmlSpecialChars() are able to convert these chars ...
0
votes
0answers
50 views

Need to convert base 64 string into pdf document

Please give solution to my problem: I have base64 string stored in table which i want to convert into a pdf document. Steps which i have followed are 1)fetch the string from database 2)convert it into ...
1
vote
0answers
67 views

Decoding UTF-8 files using Python

Alright, so I have tried to wade through the multiple posts about this error, but unfortunately I am either too tired to understand them, or something is simply eluding me. Im trying to read a UTF-8 ...
1
vote
0answers
131 views

Convert UTF8 to ASCII using lazarus

I am reading some strings from a text file, the problem is that the strings are UTF8 and contain characters that I wish to remove such as: Ă An not easy solution would be for me to replace each ...
0
votes
1answer
51 views

Quote become " on PHPExcel

I'm using PHPExcel to export data into excel report. But the below characters are being altered. " become " & become & Example: "The Company" --> become "The ...
0
votes
1answer
86 views

Best order between stripslashes, utf8_decode, mysql_real_escape_string?

What is the best order if I need to use these functions in PHP: stripslashes, utf8_decode and mysql_real_escape_string. Actually somme \\ appears for example: Francois\'s Farm. Thanks.
2
votes
0answers
372 views

Generate PDF with arabic text in DOMPDF give question mark

I have a page containing form which is auto-complete with arabic and english text when I generate it with DOMPDF the english text appears good but the arabic appears as question marks... I set the ...
0
votes
1answer
67 views

R&OS php pdf € in a table

I all, I'm using R&OS to generate PDF. Everything is fine until I start doing Invoices because I need to print currency. I used all my knowledge but nothing fixed my problem. code is here: ...
0
votes
2answers
218 views

convert unicode to string php

My actual string is Mom said, "I love this one." Jake said, "I don’t get it." But instead it In my database in one column the value is saving like that i cant change Mom said, “I ...
1
vote
2answers
100 views

encode or decode string from mysql using php

In my db I have a field value looking like this: ΜΑΚΑΡΙΟΥ Γ\' I think it must be Greek chars inserted when I didn't have set UTF-8 for my db (I think I was using the default Latin 1). Is ...
0
votes
1answer
71 views

Twitter cuts my urls with a high hand

I want to enable user can tweet songs they like in demo However, when url contains a Turkish character Twitter splits the url from just after the first Turkish character like on image Url on tweet ...
0
votes
2answers
41 views

Encoding inappropriate Characters

How can I get it printed just what is written in code? ışık hğzmesi is written at code and I want to it printed again as ışık hğzmesi. What i have tried below about utf-8 coding they haven't work. My ...
0
votes
3answers
669 views

Convert escaped Unicode character back to actual character

I have the following value in a string variable in Java which has UTF-8 characters encoded like below Dodd\u2013Frank instead of Dodd–Frank (Assume that I don't have control over how this value ...
0
votes
2answers
245 views

incompatible character encodings: Windows-1252 and UTF-8 yml files

I am using Apatana Studio 3.0. The non-ASCII characters, such as ü, is available in de.yml and oher files. Should they require extra encoding values? I have # encoding: utf-8 present in specific ...
0
votes
1answer
203 views

Decoding html encoded character in velocity liferay

As title, I have an encoded String that I got from my URL, I want to display to user but don't know how to decode it T%E1%BB%87p t%E1%BA%A3i l%C3%AAn => Tệp tải lên I'm using liferay 6.1 ga1, and ...
0
votes
1answer
5k views

Decode UTF-8 with Javascript

I have Javascript in an XHTML web page that is passing UTF-8 encoded strings. It needs to continue to pass the UTF-8 version, as well as decode it. How is it possible to decode a UTF-8 string for ...
0
votes
0answers
120 views

str_replace fails when meets apostrophe into the string

i'm trying to replace every accent or special chars from a string but when str_replace meets an apostrophe it doesn't work as I need... please, how to avoid? The input file is from csv (ISO-8859-1 or ...
0
votes
2answers
401 views

Why do I have to utf8_decode() my MySQL column value to get it to display properly?

I'm using CakePHP with App.encoding set to UTF-8, <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> present in my <head> and my MySQL database set to UTF-8 Unicode ...
0
votes
1answer
125 views

Java - JSONObject charset

I'm using JSONObject from org.json.* I need to construct JSONObject with string fields like this field:"englishletters123\u1234\u3456"//UTF-8 encoding so, I'm doing this myJSONObject.put("field", ...
1
vote
2answers
222 views

php utf8_decode doesn't recognize square root from $_GET

When i send this perfect square character: 25² And retrieve it in another page using utf8_decode i get (as expected): 25² Now i want to do the same thing with square roots. When i send this ...
1
vote
1answer
539 views

mysql_query on utf8_general_ci collation

I'm having some trouble with running a query on a database using utf8 encoding. Everything works fine until I try a string with special characters. I can't really make a lot of changes to the database ...
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 ...
2
votes
2answers
84 views

python 2.5 encoding

# -*- coding: utf-8 -*- from pyquery import PyQuery as pq from urllib import urlencode from urllib2 import Request,urlopen def sendRequest(url, data = None, headersOnly = False): headers = { ...
0
votes
2answers
289 views

Read UTF-8 hex codes in xml using JavaScript

I have a xml file which has an En Dash and Em Dash characters in it as part of element text. They are getting converted to UTF-8 codes as following. <TextValue>This is an En Dash: \xE2\x80\x93 ...
0
votes
2answers
154 views

How to convert unkown character set into utf8?

I have the string Mühle saved as Mühle in a utf8 database. I want it to be in UTF8 so it will show properly on my webpage which also uses utf8. I think the string was not converted into utf8 befor ...
0
votes
1answer
227 views

Ruby equivalent to PHP's utf8_encode and utf8_decode functions [duplicate]

Possible Duplicate: How can I convert a string from windows-1252 to utf-8 in Ruby? How can i transform the utf8 chars to iso8859-1 So here's my problem. I have tools I've distributed ...
0
votes
1answer
77 views

Convert Byte Array to Text With Byte Order Mark Detection

Trying to figure out the byte[] equivalent of this string getText = string.Empty; using (StreamReader sr = new StreamReader((System.IO.Stream)File.OpenRead(unc), true)) { ...
0
votes
1answer
213 views

JSch to download file with file name in non ASCII characters

I am using JSch's ChannelSftp to download files from remote FTP server to local linux machine. When remote machine has file's with filenames which have non-ascii characters, downloaded file has ? ...
0
votes
1answer
217 views

how to read Charset UTF-8 encoded buffer in server java.nio

In the server my message is encoded `Charset charset = Charset.forName("UTF-8"); CharsetDecoder decoder = charset.newDecoder(); CharsetEncoder encoder = ...
0
votes
1answer
319 views

Scandinavian characters æ, ø, å escaped incorrectly

My program interfaces with servers in other countries and regularly needs to handle URLs containing foreign characters. This works fine until we consider Scandinavian characters such as æ, ø, and å. ...
0
votes
1answer
112 views

UTF-8 encoding issues on my website

I'm stuck with the encoding of my site it didn't encode correctly the site to utf-8 but cannot figure it out where i've done wrong here is the example to check it out if someone is interested to help ...
2
votes
2answers
248 views

UTF-8 Encoding a string with double Quotes in C#

StringBuilder request = new StringBuilder(); request.Append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>"); byte[] msg; string decoded; ...
1
vote
2answers
146 views

PHP - Do I need any UTF-8 encoding/decoding?

Ok, I am writing comments to a UTF-8 file that I read within the function below to remove the text in between these comments. My question is, do I need anything different in here to do this ...
1
vote
2answers
1k views

HttpWebRequest's response don't show UTF-8 symbols

I have simple code for getting response from websites, but there is one small problem. I am trying to get response from Russian website and from one website I unknown symbols and from other I get ...
1
vote
1answer
1k views

PHP - utf8_decode() to wrong character

Trying to use the Twitter search API. When I call utf8_decode on a re-tweeted tweet I get speech marks/quotes appear as question marks... Code: $output .= ' <div class="leftcoltweet"> ...
0
votes
1answer
76 views

Encoding issue while saving values contain spacial characters

Am using rails 3.2.3 I want to save some html data to my database.But it gets encoded while saving.So while am trying to display those html data it appears as plain text. Want to save pure html ...
0
votes
0answers
175 views

Using a temp p block to convert escaped html to text in JavaScript failed

There are some ways to convert escaped html (eg. $#12345) to characters in JavaScript. A question talking about this: Convert HTML Character Entities back to regular text using javascript My code ...
1
vote
1answer
572 views

urllib: get utf-8 encoded site source code

I'm trying to fetch a segment of some website. The script works, however it's a website that has accents such as á, é, í, ó, ú. When I fetch the site using urllib or urllib2, the site source code is ...
1
vote
0answers
42 views

How can I get non-escaped utf-8 output from Django tests?

Using Django 1.3 with python 2.7, a testcase like: # coding=utf-8 from __future__ import unicode_literals, print_function, division from django.test import TestCase class ...
9
votes
3answers
459 views

My script works fine, but I'm confused about why I have to use utf8_decode()

I am confused about the behavior of utf8_decode() and just want a little clarification. I hope that's ok. Here's a simple HTML form that I'm using to capture some text and save it to my MySQL ...
3
votes
3answers
754 views

How to encode cyrillic characters for URL and then decode them?

I have a form on one page: <form method="POST" accept-charset="UTF-8" action="index.cgi" name="TestForm"> One of the input fields "search_string" may be used to send Cyrillic characters and ...
6
votes
1answer
399 views

Java convert character stream into human “readable” String

I have a bunch of characters with that looks something like this: ...
1
vote
2answers
1k views

Python POST request encoding

here's the situation, i'm sending POST requests and trying to fetch the response with Python problem is that it distorts non latin letters, which doesn't happen when i fetch the same page with direct ...
1
vote
3answers
560 views

Incorrect decoding of known UTF-8 string from server

In my application, I am getting some string values from a server, but I'm not ending up with the right string. بسيط this is the string from server side, but what I am getting is Ø¨Ø³ÙØ· I ...

1 2