UTF-8 (Unicode Transformation Format, 8 bits) is a character encoding that describes each Unicode code point using a byte sequence of one to four bytes. It is backwards-compatible with ASCII while still supporting representation of all Unicode code points.
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 for instance.
This ...
0
votes
1answer
49 views
JSF UTF 8 characters not seen ONLY in first form post, jsf, tomcat?
I have a simple JSF form where I submit a username and password and persist to database.
Only in first form submit, I am having problems with UTF-8 characters. When I submit ğğüüçç in first post, I ...
0
votes
1answer
18 views
Opening question mark only shown on some linux environment
I'm developing an html page and it's in spanish, so i need to use "¿" (opening question mark) and i have to do it on a linux environment. However i'm editing this html docs on windows while using ...
1
vote
0answers
32 views
Alfresco 4.0 Community - document preview for cyrillic utf8(?) txt, html shows malformed text
Alfresco 4.0 Community previewer displays utf8(?) txt and html documents with cyrillic malformed. How to enable utf8 for previewer or at least force it show normally russian and english text?
Txt ...
8
votes
2answers
114 views
Is there an easy way to work around a Delphi utf8-file flaw?
I have discovered (the hard way) that if a file has a valid UTF-8 BOM but contains any invalid UTF8 encodings, and is read by any of the Delphi (2009+) encoding-enabled methods such as LoadFromFile, ...
0
votes
3answers
43 views
HttpServletRequest UTF-8 Encoding
I saw a lot of question like mine but not a single answer works...
Here's the thing : I want to get my parameters from the request (characters with accents) but it doesn't work. I tried to user ...
3
votes
4answers
44 views
Filtering out UTF-8 punctuations and symbols from a String
What is the best and most efficient way to filter out all UTF-8 punctuation characters and symbols like ✀ ✁ ✂ ✃ ✄ ✅ ✆ ✇ ✈ etc from a String. Simply filtering out all characters that are not in a-z, ...
0
votes
0answers
78 views
How do I convert a wrongfully encoded Java UTF-8 String to the correct encoding [duplicate]
Let say that that I have accidentally created a String with new String(bytes, "UTF-8")
so Med vänliga hälsningar becomes Med v?nliga h?lsningar
That String should actually be created with new ...
0
votes
1answer
26 views
UTF-8 BOM added to downloaded file
I am using PHP and IIS 8 on a Windows Server 2012. I create an UTF-8 encoded file on the server and then I push it to the client with the following code:
// Start upload to client
...
1
vote
1answer
31 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
...
0
votes
1answer
20 views
UTF8 Variable from FLASH Post to filename
I am using a script to send a "$filename" variable from flash to PHP in order to create an xml file. The problem is that when I am typing Greek Characters as Filename the filename on the server gets ...
0
votes
0answers
32 views
Sending data to php from android - content type encoding error
I am sending some data from my android app to my php web service. It is intended for the web service to then insert my data into my PostGreSQL database which as UTF8 encoding enabled. However I am ...
0
votes
0answers
26 views
XML emitted from PHP does not show correctly in IE 10 source view
I try to emit an XML document from a PHP (engine is 5.3) script. The page displays correctly in IE 10 and Firefox. I can see the XML tree as I do not use a stylesheet. I can also see the raw XML in ...
-3
votes
0answers
25 views
Mysql Inserting weird characters [closed]
21:38:36,648 WARN [JDBCExceptionReporter] SQL Error: 1366, SQLState: HY000
21:38:36,648 ERROR [JDBCExceptionReporter] Incorrect string value: '\xC2\x80\xC2\x93 L...' for column ...
0
votes
2answers
80 views
Special characters while parsing Json in iOS.
I am trying to send a string to server by using Json Parsing. My string contains a lots of special characters like ó,æ, ø, å and many more. When i am sending the data to server without any special ...
-2
votes
0answers
25 views
java encoding in Debian [closed]
I have simple application that runs on Debian OS.
Application sends xml data to server. XML contains characters encoded in UTF-8.
When I start application manually it process utf-8 characters ...
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 ...
0
votes
0answers
4 views
XALAN-J encoding issue using external javascript function
Hi I have a simple XSL template:
....
<xalan:component prefix="js" functions="sanitize">
<xalan:script lang="javascript" src="../resources/sanitize.js" />
</xalan:component>
...
0
votes
1answer
28 views
Removing invalid UTF-8 from a multidimensional input array?
The $_POST array can be multi-dimensional. I have code that removes invalid UTF, but also completely removes the sub arrays.
Running this code:
print_r($_POST);
$UTF8_Input = ...
2
votes
1answer
31 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
73 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
33 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
46 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
21 views
How to create CSR with utf8 subject in openssl?
I am trying to generate Certificate Signing Request with UTF-8 subject.
$ openssl req -utf8 -nodes -newkey rsa:2048 -keyout my.private_key.pem -out my.csr.pem -text
Generating a 2048 bit RSA ...
0
votes
1answer
31 views
Fail to Insert Unicode into SQL Server using Peta Poco
Normally when we want to insert unicode letter into SQL Server, we can do N' foreign letter'
But I'm using Peta Poco and I cannot add N (or I don't know how to)
So how do I make sure my input can be ...
0
votes
2answers
78 views
Convert all data in SQL Server to unicode
My database table string columns are nvarchar.
But when I insert my data using application, I forgot to add the N' prefix. So the display is not UTF-8 on web. This causes lot of problems.
How do I ...
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 ...
1
vote
1answer
24 views
How do you set the Safari browser title with UTF-8 characters in javascript?
I have updated this question to make it clearer:
I am sending the word "Über" as the value in a php header as a response to an ajax request like so:
header('title: ' . 'Über');
The word "Über" ...
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
20 views
Android not displaying special characters
I am passing a character from PHP to android. Character I am passing is ó.
I am passing it after doing URL encoding, as I am using GCM
But when I get the message on the phone it is displayed like ...
0
votes
1answer
36 views
How to encode object like list of dict which contains unicode key or value to utf8?
Is there any easy way to convert object which contains unicode string into utf8?
for example:
before = [
u'labelset': {u'labelset_id': 80L, u'labelset_name': u'\u6d17\u8863\u6a5f'},
...
-1
votes
0answers
18 views
Utf 8 encoding and decoding not working for some danish characters
I am working on php.I've set utf8 for a string like this:
$strComment = mb_convert_encoding($strings, 'UTF-8');
its working fine for all the characters.It given � for only two Danish characters(ß ,€).
...
0
votes
2answers
37 views
UTF8 combination PHP/MySql [duplicate]
My sql database have utf8_unicode_ci collation and HTML have utf8 (meta charset="utf-8").
when i write in PHP:
$query = "SELECT * FROM `subjects` WHERE `year` = '$year'";
$result = ...
0
votes
1answer
17 views
Convert Hexadecimal Character from URL in php
I want to convert the hexadecimal character from URLs (e.g. %C3%A4) to the "normal" UTF8 character (e.g. ä) (like "Hexadecimal Codes to Characters" in Hexadecimal Character Codes in URL).
How do this ...
0
votes
3answers
30 views
JavaScript send full HTML source via AJAX, problems with UTF8
I'm having troubles with sending a full page source with AJAX. I've tried escaping the content with escape(), encodeURI(), encodeURIComponent() - all of them fail sending utf8 characters.
My code is:
...
1
vote
1answer
33 views
How to work with multibyte strings read from a file in Ruby? See inside
I'm a newbie to Ruby with Perl background. And I got some problems with .reverse of a multibyte string read from an utf-8 encoded file.
Code:
#!C:\Ruby200-x64\bin\ruby
puts ...
1
vote
3answers
64 views
How to read UTF 8 encoded file in java with turkish characters
I am trying to read a UTF-8 encoded txt file, which has some turkish characters. Basically I am have written an axis based web service, which reads this file and send the output back as a string. ...
1
vote
5answers
139 views
PHP Regular expression - Remove all non-alphanumeric characters
I use PHP.
My string can look like this
This is a string-test width åäö and some über+strange characters: _like this?
Question
Is there a way to remove non-alphanumeric characters and replace them ...
-1
votes
1answer
42 views
Best practice handling UTF-8 in PHP / MySQL application
I've been struggling with this for a while. I'm building a web site in PHP and MySQL. But the way that special characters such as "öäüß" behave is oddly random!
I'm using these encodings:
PHP ...
1
vote
2answers
21 views
losing encoding of string when pushing to json in python
Im trying to run a a script in Python on a Linux server that runs a mysql query that results in a few Hebrew strings(made it one here to simplify) as follows:
#!/usr/bin/env python
# -*- coding: ...
0
votes
0answers
12 views
JSF 2.0 utf-8 filter for LOB
I'm writing a jsf 2 application with primefaces( used only for file upload ), hibernate, and using a custom filter to encode to UTF-8. But I have problem with encoding LOB with cyrillic text. Small ...
-2
votes
0answers
25 views
Netbeans 7.3 for PHP is not displaying Arabic characters [duplicate]
Netbeans 7.3 for PHP is not displaying Arabic characters. I check this but still facing the same problem.
NB: Working on Ubuntu 12.04 machine.
0
votes
1answer
29 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 ...
-1
votes
1answer
69 views
jquery Struts2 Java $.getJSON params UTF-8 encoding (Tomcat 5.5)
I'm getting mad with this:
Tomcat 5.5, JRE 1.6 (compliance level) using JDK 1.7
Headers:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
...
...
0
votes
0answers
27 views
UTF-8 in a Java applet (in a webpage)
Perhaps this has never been asked because it's so trivial but: I have an old Java applet that I need to use on a slightly less old webpage. The applet, among other things, needs to read text from some ...
0
votes
4answers
99 views
How to construct and write an XML file?
This question ia about writing XML data from a LiveCode stack to a file.
Chapter 6.7 of the User's guide talks about the XML functions LiveCode provides. I am looking for examples which show how to ...
0
votes
0answers
48 views
PHP not printing special characters
I'm receiving a text file upload and then just printing it back out. For some reason, special characters are appearing as black boxes with a white check mark. I tried htmlentities() and ...
1
vote
3answers
66 views
Mojolicious Template can't render © character
I found error on Mojolicious Renderer when try to render © character (ascii: 169)
(also return error when try to render ascii larger than > 128)
Template ...
0
votes
1answer
57 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
31 views
Font width of non-English fonts
I am trying to draw characters from Hindi on a plain white background and store the resulting image as a jpeg. I need to size the image dynamically so that it fits the text. Currently, image height is ...

