Encoding is a set of predefined rules to reversibly transform a piece of information in a certain representation into a completely different representation. The other way round is called decoding.
0
votes
1answer
16 views
C# encoding Shift-JIS vs. utf8 html agility pack
i have a problem. My goal is to save some Text from a (Japanese Shift-JS encoded)html into a utf8 encoded text file.
But i don't really know how to encode the text.. The HtmlNode object is encoded in ...
0
votes
1answer
23 views
encode string as utf-16 to base64 in javascript
I'm struggling to find any resources on this online, which is concerning.
I've been reading about UCS-2 and UTF-16 woes, but I can't find a solution.
I need to get a value from an input:
var val = ...
0
votes
2answers
21 views
TEXT in Arabic showing wrong characters instead
I've a Character Encoding issue.
I've a text file written in arabic, when i open it I get weird characters.. like this åÇÜÇáÍÌÑäÇáÑÝÇÚíãäí..
Is there any way to fix this and get a correct text? ...
0
votes
0answers
27 views
PHP & Android - UTF-8 encoding problems
We're doing a POST request via Android to PHP and Android is passing UTF-8 string, our database is currently cp1252 (has a live iPhone backend, hence working with it)
However we can't seem to get ...
1
vote
3answers
23 views
Special Characters “>” not displaying by using UTF-8
Here are my codes below:
ul.pathnav a:before{
content:"\0X3E";
text-decoration:none;
}
\0x3e is the hex for ">", but it doesn't work.
I tried another special character, it works ...
0
votes
1answer
18 views
Encoding in databases sql commands
I will like to know what entity is responsible for doing the encoding conversions necessaries to accomplish and SQL command successfully. For example: you have several places where output an SQL ...
0
votes
0answers
23 views
SQL Server 2008 R2, Hebrew returned as question marks
I've got an ASP Classic site hosted on IIS 7, powered by SQL Server 2008 R2.
The data in the tables of the DB is in Hebrew.
The problem is that when I try accessing the data from the site (as ...
0
votes
0answers
7 views
PDFBOX PDF->Text encoding working on a computer and not on the other one
I am extracting text from a swedish pdf and the swedish characters on my computer are displayed as a ?
However when testing the same code on another machine it is working and parsing well.
I ...
0
votes
0answers
28 views
Webpage encoding utf-8
I am having massive problems and very confused of what to do?
My Mysql database Collation: latin1_swedish_ci
My header: meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
Before ...
1
vote
1answer
15 views
Change encoding multiple file with iconv in bash
I want to change multiple php files encoding with iconv.
I use find and exec option (Reference : http://linux.bigresource.com/Ubuntu-Encoding-Conversion-on-Multiple-Files--4fuXvUwbN.html)
find . ...
1
vote
1answer
17 views
confused about xhtml5: no more `<?xml?>` and now mandatory `meta`?
I've been a longtime user of XHTML 1.0 Strict, and I'm now trying to switch to XHTML5 in my new projects.
I'm confused that <?xml version='1.0' encoding='utf-8'?> is no longer considered valid, ...
1
vote
0answers
32 views
Save text file in UTF-8 encoding using cmd.exe
Is it possible to save a text file in UTF-8 encoding using Windows' command line cmd.exe?
0
votes
1answer
39 views
How to read byte[] with current encoding using streamreader
I would like to read byte[] using C# with the current encoding of the file.
As written in MSDN the default encoding will be UTF-8 when the constructor has no encoding:
var reader = new ...
1
vote
2answers
35 views
Encoding and decoding UTF-8 byte arrays from and to strings
I'm working on a cross-platform encryption system. One of the requirements is to easily encrypt and decrypt strings in out application code.
The encryption class works flawlessly, but I'm having ...
-2
votes
3answers
50 views
How to convert Unicode strings to ISO?
Help please, I have to print unicode strings caming from a database (oracle stored procedure => mapping into a java object) into a JSP page (with stuts1), I used this :
String unicodeStr = ...
0
votes
2answers
35 views
Does encoding matter when writing to a file?
I was told today that when writing to a file the Encoding in which you write in doesn't matter. I don't know a lot about Encoding but this sounds reasonable considering Encoding is only for ...
1
vote
1answer
18 views
What project encoding I must set in Netbean project property to open files encoded using the DOS character set (Code page 437)?
The problem is that I don't see any encoding in the drop-down list of available encodes on Netbean project property that match any of the names that DOS character set have. I have installed Netbean ...
0
votes
1answer
27 views
How to make a web request in WP7 from a server with unsupported encoding
I'm making a Windows Phone 7.1 app that needs to get some content from an API described in
http://feed.evangelizo.org/reader.php
For example, this is a valid request
...
0
votes
1answer
51 views
How can I make my methods restart my after being executed once?
How can I alter my code to make it so that it reruns the if/else-if statements after being run once.
E.g. How can I go:
top menu>prompt for input(which is 2)>submenu>prompt for input(1 ...
0
votes
1answer
25 views
Encoding C++ / PHP / MySQL
I've got a big problem with my "MySQL" database encoding.
When I see my database with phpmyadmin I see the data with encoding problem with special characters like "é" -> "é" or stuff like that.
But ...
1
vote
0answers
17 views
JFlex and accented characters
I need to create a parser with JFlex to extract all words from an input file, including those with accented characters like á, é, í, ó, ú, ñ, ...
My problem is that even setting all files with UTF8 ...
0
votes
2answers
50 views
String to unicode code point escpe sequences in Python
Here is my problem... I have a "normal" String like :
Hello World
And unlike all the other subjects I have found, I WANT to print it as it's Unicode Codepoint Escape value !
The output I am ...
0
votes
1answer
36 views
Url decode UTF-8 in Python
I have spent plenty of time as far as I am newbie in Python.
How could I ever decode such a URL:
...
1
vote
2answers
15 views
How to code the value of input[type=“submit”] that validates
Two questions
What is the best way to encode the rarer characters for form element values?
Is the semi-colon in the example below causing the validation error or is it something else?
HTML
...
1
vote
1answer
35 views
FFMPEG - format not available?
I'm converting some code from FFMPEG 0.8 to FFMPEG 1.2. I have an error during the call to the method avcodec_open2(): "Specified pixel format %s is invalid or not supported". The format I use is : ...
1
vote
1answer
22 views
parsing xml attribute: strange Encoding issue
I get a strange encoding problem when I try to parse a certain attribute of an xml/html document.
Here a reproducible example , containing 2 items with 2 titles (note the use of french accent here)
...
1
vote
2answers
24 views
Python regex with ØÆÅ letters
I am new at Python so this may seem to be very easy. I am trying to remove all #, numbers and if the same letter is repeated more then two times in a row, I need to change it to only two letters. This ...
-1
votes
0answers
26 views
FFMPEG Transcoding suddenly stops
I am using ffmpeg to transcode an rtmp stream using the code below:
ffmpeg -y -i rtmp://server/videochat/testing -acodec libfaac -ac 2 -ab 64k -vcodec libx264 -f flv ...
0
votes
0answers
24 views
is it possible to only encode or obfuscate code in php tags but leave html [closed]
The tile says it all really - i use Source-Guardian and a free encoder - i want to encode small blocks of php code between the php tags on a web page but leave the html untouched i.e. readable. Can ...
2
votes
1answer
64 views
Server's quotation mark (“) appears as ”â" in iOS app
I am currently writing an iOS app that reads data from a PHP echo. After much hassle escaping each character I resorted to PHP function UTF8_Encode.
This seemed to work great, however when I have a ...
1
vote
1answer
36 views
What is the difference between locale and Encoding ( Terminal )
I have tried a few ways to set the terminal 'encoding' from a c++ program.
All I could do is to change the locale. or the LANG variable.
Still I am able to enter characters which are of different ...
0
votes
1answer
31 views
MySQL: insert symbols like ½ or °
I need to insert some data into a MySQL table. The table has collation utf8_general_ci. The insert lines are all written into a text document.
I am able to insert special symbols into the MySQL ...
0
votes
0answers
28 views
Google TTS API: Encoding GET request with PHP
--- SOLVED ---
Problem solved. Solution is simple:
file_get_contents("http://translate.google.com/translate_tts?tl=de&q=".urlencode($str)."&ie=UTF-8")
To those coming here from search ...
1
vote
1answer
22 views
Append binary data to serialized xml header
I need to append binary data to file but before this data is an xml header. Whole file wont be proper xml file but it must proper xml header like following:
<EncryptedFileHeader>
...
0
votes
0answers
28 views
Android - Encoding image and sending it to the server
I am working on encoding the selected image from the gallery and want to send it to the server.
I succeeded to send name and description of the product which is text form.
but, I don't know how to ...
-1
votes
1answer
46 views
PHP utf8_encode with utf8 characters included [closed]
Background:
A part of my system uses utf8_encode to convert html code to utf8 format before passing it on to json_encode.
Problem:
Everything was fine until I entered UTF8 characters(Chinese) into ...
0
votes
2answers
97 views
mongoengine django and encoding, 'utf8' codec can't decode byte
My mongodb use utf-8, and the django read data from it is not unicode, perhaps it is the answer,but how to solve this problem?
the data in mongodb have some Chinese. If I use the other table totally ...
1
vote
1answer
41 views
are signed integer and unsigned integer one-one mapping with each other?
I want to make ip-port pair as a search key, so I have the following function
int64_t make_pair(u_int32_t ip, u_int16_t port)
{
u_int64_t ip_u64 = ip;
ip_u64 = ip_u64 ...
1
vote
1answer
31 views
Removing non-printable characters in ruby
Sometimes I have evil non-printable characters in the middle of a string. These strings are user input, so I must make my program receive it well instead of try to change the source of the problem.
...
0
votes
0answers
17 views
Unicode Using sqlite3 in Python 2.7.3
I'm trying to insert into a table, but it seems that the file I opened has non-ascii characters in it. This is the error I got:
sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless ...
0
votes
1answer
32 views
Spring Web - decoding URL params
I have a spring based web application running on Apache Tomcat 7.0.39 and get request that contains parameter values having special characters (UTF-8 encoded).
For example:
street=R%C3%BCbenkamp+246
...
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 ...
1
vote
2answers
32 views
Mercurial: which config property controls the encoding of file contents?
Is there a dedicated Mercurial configuration property which specifies the encoding of file contents and hence should be used by a Mercurial client to properly display a file?
I've found web.encoding ...
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
2answers
66 views
DataType JSON doesn't work with php
Here is my HTML
<input x-webkit-speech id="mike" name="string" style="position: relative;" disabled lang="ru" />
Then when the field is changes,
This function executes
...
0
votes
2answers
41 views
How to work with UTF-8 in Python 2.7?
I just want to get UTF-8 working. I tried this:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
t = "одобрение за"
print t
But when I run this program from the command line, output looks like: ...
1
vote
1answer
41 views
JSON PHP encoding issue
I trying write a simple php script witch get a string and return string in json.
All database and forms and html was set according to this article.
http://kunststube.net/frontback/
And it works ...
0
votes
2answers
50 views
Bytes to String or String to Bytes?
I have read some of the examples here but I am such a novice I don't understand some of them and others don't seem to work(probably because I'm such a novice but...
import urllib.request
import re
...
0
votes
1answer
39 views
Stored Images in SqLite is taking 2x more space
I want to store jpg images in a SqLite database and I am using this code at the moment:
public byte[] ImageToByte(Image image, System.Drawing.Imaging.ImageFormat format)
{
using ...
0
votes
1answer
39 views
VIM set encoding and fileencoding utf-8
What is the different between the two? :
set encoding=utf-8
set fileencoding=utf-8
Do I need to set both?
I want to use utf-8. Also, do I need to set fileencoding with set or setglobal?
