0
votes
1answer
21 views

Codeiginter mysql storing chinese characters as questions marks

When I type in chinese characters to store in the database, it becomes ??? question marks instead. Anyone can help me with this? My codeigniter config settings for char set is ...
0
votes
0answers
13 views

DateTime objects from MongoDB have unreadable characters in Object Definition

Whenever I fetch data from a MongoDB collection, and one of the fields has a DateTime object, I get this: object(DateTime�����w )[359] public 'date' => string '2012-12-12 00:00:00' (length=19) ...
0
votes
0answers
19 views

myql-front replacing symbols to question marks

when manually inserting into myql-front some string after refrash it replace to question marks the problem is that when im selecting that column it comes same question marks symbols to html i have ...
0
votes
1answer
26 views

encodeURIComponent and encodeURI

I am trying to encode the French characters inside the URL. The url is constructed in javascript, and then I use window.open to open the url. For example, var alt_title='Thierry Frémaux: Les ...
0
votes
0answers
21 views

MYSQL - From utf8_bin to latin1_swedish_ci

I've imported phpbb records to vbulletin using impex. But now I've a problem with charset. PHPBB was in utf8, vbulletin is in latin1. How can i convert EVERY characters? I've seen this code: Detecting ...
0
votes
1answer
30 views

ë versus ë versus ë

I need two PHP variables to match ($path1 and $path2). I can only change one of them ($path1). The variables both contain the letter ë, but one of them is written as ë and the other one as ë. ...
1
vote
3answers
55 views

How to convert windows-1256 to utf-8 in lua?

I need to convert Arabic text from windows-1256 to utf-8 how can I do that? any help? thanks
0
votes
0answers
38 views

Special Characters (UTF8 character) in Oracle 10g Clob Column returning as ? or blank in Java

We have a a table which stores XMLs as CLOB (Oracle 10g). These XMLs typically contains some special characters e.g `FDEAÂ’s` When I query this record using SQLDeveloper and save the XML in ...
0
votes
0answers
15 views

How to convert entire website (files+data) to utf-8

I have a website with many files using Greek charset iso-8859-7 and I want to convert the entire website to utf-8, meaning changing both the files encoding and the data in the database. All PHP files ...
1
vote
3answers
41 views

Why is my Java Charset.defaultCharset() GBK and not Unicode?

Config: Windows 8 English operating system; JDK1.7; Eclipse. I installed a software written by a Chinese, and the GUI is Chinese characters. But the software displays ugly with square boxes. I ...
0
votes
2answers
29 views

html5 charset=utf-8 is not working for german umlauts

I am trying to show € in my new page, the html is of version 5, i set the meta charset to <meta http-equiv="content-type" content="text/html; charset=UTF-8"> but it is still showing the € in ...
0
votes
0answers
35 views

Strange characters in HTML mails on iOS

I'm using phpMailer in a WordPress plugin to send HTML mails. This works very well. But unfortunataly some users have these strange characters on german Umlauts and the &nbsp; for instance. This ...
1
vote
1answer
34 views

Unicode sample text file for testing for Unicode related problems?

I am looking for a sample text unicode file (UTF-8) that can be used for testing different problems related with text encoding and decoding including: low ascii character usage, like first 32 codes ...
1
vote
0answers
31 views

Batch generated file produces encoding error with latex [migrated]

The goal: This is for an exam. I have a program which should be compiled and executed by batch script. Another batch script calls that first batch an writes the output to a .txt file. Then the ...
2
votes
1answer
33 views

How to remove 4 byte utf-8 characters in Ruby?

Since MySQL's utf8 doesn't support 4 byte characters, I'm looking for a way to detect and eliminate any 4 byte utf8 characters from a string in Ruby. I understand that I can update my table to use ...
3
votes
1answer
74 views

How can I convert json data?

I've got json data. There is "cyrillic" strings in json file, like this one: \u0418\u0432\u0430\u043D\u043E\u0432 \u0418. When I decode json and put this data in database table I get the string ...
0
votes
1answer
34 views

MySQL. Insert UTF-8 characters to database

I need to add usernames from Facebook to database and these names have UTF-8 characters like (ą,č,ę,ė,į,š,ų,ū). When I add It to database for example letter š looks like Å¡ In myPhpAdmin I found ...
2
votes
2answers
47 views

How to use utf8 encode with open pragma

I have problem with utf8::encode when use pragma use open qw(:std :utf8); Example #!/usr/bin/env perl use v5.16; use utf8; use open qw(:std :utf8); use Data::Dumper; my $word = "+банк"; say ...
0
votes
0answers
25 views

PHP + Charset UTF-8 and the character ô

I have really problems with Vietnamese characters in inputs. After the POST method I take all inputs fields and run on them this method: public function stripcleantohtml($s){ return ...
0
votes
0answers
46 views

UTF-8 display formats in java

My problem is with utf-8 display formats, Using link here; How to get "One Latin-1 char per byte" format in java? For example: String x="Φ"; encodedString --> Φ
0
votes
1answer
30 views

Character encoding differs between local and remote server

I've run into a problem with character encoding. I'm using D3.js to load a json file. Some of the rows contain characters such as å, ä, and ö. These are rendered as � in the browser, but only when ...
0
votes
1answer
65 views

dompdf character encoding UTF-8

Im trying to create pdf with correct characters, but there are "?" chars. I created a test php file, where Im trying to fing the best solution. If Im open in the browser the html I looks like ok ...
0
votes
0answers
22 views

mobileOK W3C validation/ CSS / The resource does not specify UTF-8 as character encoding

I try to validate my according to w3c mobileOK validation tool The validation gives me a warning: The resource does not specify UTF-8 as character encoding WHy?: One of the resources required to ...
5
votes
1answer
83 views

UTF-8 character is not proper in JOptionPane

Please find the below sample code, The UTF-8 character properly displaying in windows machine. But, its not proper for Linux machine (Ubuntu). import javax.swing.JOptionPane; public class ...
2
votes
1answer
51 views

How to get UTF-8 in Node.js?

How do I get UTF-8 support on my API? At the moment, a string outputs like this: name: "John D�m" Instead of: name: "John Döm" Checkout app.js below: var express = require('express'), ...
0
votes
0answers
38 views

Jsfiddle - strange characters on UI

what's the solution for this kind of problem (weird characters) that suddenly appeared for me on jsfiddle.net? This started a few weeks ago. Any similar experiences? Update 1 It works perfectly ...
0
votes
1answer
82 views

Force IE to send URLs in UTF-8

I am having one issue with the behavior of Internet Explorer and UTF-8 characters in URLs. I found that my site fails to complete the request when IE has unchecked "Send UTF-8 URLs" in Internet ...
2
votes
1answer
46 views

Does meta tag “charset=utf-8” ensure the correct visualization in any browser?

I am working on a website with multilingual characters (Latin,Cyrillic,Japanese, Chinese and so on) mixed together. I've used the following meta-tag to ensure the correct visualization of the ...
1
vote
0answers
41 views

Character encoding problems with reading a csv file

My csv file contains special characters like 'æ', 'å' etc. When I read and print the file, special characters in the file gets converted into '�'. I tried setting page encodig to UTF-8 and ISO 8859-1. ...
0
votes
0answers
21 views

Why does setting the default character set and collate not affect the character_* and collation_* variables?

If I run this statement against my database, it seems there is no effect on the character_set_database and colloation_database variables: ALTER DATABASE `my-database` DEFAULT CHARACTER SET utf8 ...
1
vote
0answers
57 views

Get pry to display characters like [äöüßÄÖÜß] (utf-8 encoding)? (Possibly Windows-specific issue?)

[All the scripts I'm working with with these German characters are in UTF-8 themselves, have #encoding: utf-8 at the top (and Encoding.external_default = 'utf-8', not that that's really relevant I ...
2
votes
4answers
151 views

How to work with UTF-8 in C++, Conversion from other Encodings to UTF-8

I don't know how to solve that: Imagine, we have 4 websites: A: UTF-8 B: ISO-8859-1 C: ASCII D: UTF-16 My Program written in C++ does the following: It downloads a website and parses it. But it ...
1
vote
1answer
35 views

Error with utf8 encoding

When I get data from some website, sometime the data is encode in utf8 but look like this: Thỏ , Nạt The accent mark is seperated from character when in fact these string must be: Thỏ, Nạt I ...
0
votes
0answers
36 views

cannot be safely opened with encoding utf 8 “netbeans”

Ive created a WebApplication in NetBeans and try to connect to my mysql database with using Hibernate framework. Ive made all connections , but after Ive created the java classes with the "Mapping ...
1
vote
1answer
48 views

UTF-8 is giving me question marks

I have this simple PHP-script, which searches a mySQL database and outputs the result to the user. I used to use ISO-8859-1 as my charset, but was advised to use UTF-8. But I have trouble going from ...
3
votes
1answer
84 views

Delphi 5, how to retrieve data from MySQL's tis620 fields?

I have a web application written in PHP which using MySQL as database back-end. To store my language(Thai) data, I'm using tis620 charset on my database tables, this setting is great for my web ...
0
votes
2answers
72 views

Default Charset on Heroku (US-ASCII) causing problems

We have a maven--jetty-based Java app deployed on heroku. Locally, when I do: System.out.println("Default Charset = "+ Charset.defaultCharset()); String s = "Resumé of Schrödinger"; ...
0
votes
1answer
33 views

Open text file in browser tab in utf-8

There is this page where I give the user some links. Every link targets a text file. When the user clicks it just opens the text in the browser tab. How can I set the encoding to be utf8? The files ...
1
vote
1answer
44 views

php - utf8 encoding the text twice. Will it have any negative effect? [duplicate]

MySQL Database returns utf8 encoded text. Basically, I used PDO attribute MYSQL_ATTR_INIT_COMMAND and passed: SET CHARACTER SET utf8 It returns utf8 encoded text. But some text in the database is ...
1
vote
1answer
107 views

UTF-8 text is garbled when form is posted as multipart/form-data in PHP

I have a PHP script to publish articles. It was working perfectly fine until we added the file uploading support. To enable uploading of files, we had to change enctype of tag to multipart/form-data. ...
-2
votes
0answers
18 views

How to display HerBew charaters from UTF8

I am using Codebase database in my backend. I use to write UTF8 format in my database. I am unable to display non english user contents in my website. utf8 to unicode failed to display content.
0
votes
1answer
96 views

Displaying UTF-8 characters in PDF

I am trying to display a PDF by converting it into a binary string from the backend. This is the ajax call I am making $.ajax({ type : 'GET', url : '<url>', ...
0
votes
0answers
37 views

How can I set UTF-8 encoding in Tortoise HG as my html file is in hebrew?

How can I set UTF-8 encoding in Tortoise HG as my html file is in hebrew? As I am saving the file into the utf-8 encoding in the visual studio but when I am going to commit then getting hebrew text ...
-3
votes
1answer
29 views

Hebrew is not showing well in browser I set hebrew encoding in the visual studio but still issue in browser [closed]

Hebrew is not showing well in browser I set hebrew(windows) - codepage 1255 encoding in the visual studio but still when I run the page then issue in browser. Is hows like below - à ôòéìéí When I try ...
0
votes
2answers
110 views

Wrong encoding being saved in MySql database..Windows 7, Wamp server

I am using Wamp server 2.1 on windows 7 with PHP 5.3.4, Apache 2.2.17, MySql 5.1.53. httpd.conf: AddDefaultCharset "iso-8859-1" php.ini: default_charset = "iso-8859-1" I am using php mysqli class ...
2
votes
1answer
84 views

Get Strings in right encoding in c++

I asked a similar question before. But I am still in trouble with encodings in c++. I try to describe the problem as well as possible. I have a c++ client, communicating with an c# service over TCP. ...
0
votes
2answers
52 views

VCF file stream to c#

I have a VCF file that contains my entire phonebook. I open it with Notepad and transferring data to windows form in c# via StreamReader. Some of vcard entries contains a row like: ...
2
votes
2answers
99 views

Non-english special characters in knitr

I am using knitr 1.1. in R 3.0.0 and within WinEdt (RWinEdt 2.0). I am having problems with knitr recognizing Swedish characters (ä, ö, å). This is not an issue with R; those characters are even ...
0
votes
1answer
98 views

ANSI to UTF-8 conversion

I would like to know if : all characters encoded in ANSI (1252) could be converted to UTF-8 without any problem. all characters encoded in UTF-8 couldn't be converted to ANSI (1252) without any ...
2
votes
2answers
70 views

UTF8 lithuanian characters unrecognized in MySQL database

I have well known but quite difficult to sort out problem here. And yes I was searching on forum but those threads are old enough so I decided to create new post. So I built a website using WP and ...

1 2 3 4 5 20