Most voted "iso-8859-1" questions
20 questions
Sort by count of
-
35
votes2
answers31112
viewsWhen to use ANSI and when to use UTF-8?
Is it more advantageous to use an ANSI type instead of a UTF-8 type or vice versa? Is there any gain in performance or storage between types?
-
13
votes2
answers2429
viewsHow to recognize and change the encoding of Latin characters in R?
Is there any efficient way to recognize the encoding of texts downloaded from the internet? I made a scraping of any site (see code below) and I can’t find the correct encoding. In the META tag of…
-
5
votes2
answers3274
viewsC# - XML return from Webservice with encoding error (ISO-8859-1)
I have a Windows Forms application that is consuming a Webservice that returns an xml (string) enconding with ISO-8859-1. However, the answer comes with question characters (?) instead of accents.…
-
4
votes4
answers7995
viewsAccentuation is unreadable on the page
My page (Header of a table and a modal popup), in accented letters or characters of the Portuguese language, are coming illegible. At the head of the page I have that statement: <head>…
-
3
votes1
answer1544
viewsCan I use ANSI charset in HTML files?
In order to be able to publish texts daily using some editor like Notepad++ for example, I would like to type the words with an accent and save them in the HTML file. I’ve been reading that the…
-
3
votes1
answer597
viewsJava String byte array with negative numbers
I’m having trouble figuring out the encoding of a string. The entrance is: São Paulo The original reading of this content is not my job, because the text goes through a Lua wrapper for Java. On my…
-
2
votes1
answer1667
viewsApache ISO-8859-1 + UTF8. Is it possible to use both at the same time?
About Apache with PHP in ISO-8859-1 + UTF8. I have two pages in PHP with different encodings, one in ISO-8859-1 and one in UTF8. Is it possible to use both pages with different encodings at the same…
-
2
votes0
answers146
viewsSoapclient -> Coding problem(Invalid byte 2 of 3-byte UTF-8 Sequence)
I am making a request to a webservice with PHP(Soapclient), and when I have special characters, error/ defrormation occurs. What I’ve already tried: Set the parameter 'encoding'=>'ISO-8859-1' or…
-
1
votes1
answer339
viewsCookies javascript in webview smartphones!
I would like to know if someone knows how to use or can inform if you take Cookies directly from the webview of the smartphone device.. I know they are functions of a browser, but I am making an APP…
-
1
votes0
answers38
viewsCharacter Encoding Problem UTF-8 / ISO-8859-1
I developed a website and when I use: header("Content-Type: text/html; charset=utf-8", true); PHP characters work perfectly, but HTML characters don’t, you get question marks. But when I use the…
-
1
votes2
answers530
viewsAtom not saved in correct encoding
When saving a file by Atom, it always records the accents in UTF-8. Even though the file being identified as ISO-8859-1 (there at the bottom). So I did the following test at the terminal: Before…
-
1
votes2
answers3664
viewsWhat is string ISO-8859-1?
I need to use utf8_decode and PHP utf8_encode, then I saw something about ISO-8859-1 string. What would that be? I do not want to know how to use, at the moment, I just want to know the meaning of…
-
1
votes1
answer37
viewsMysql - exchange contents from ISO-8859-1 charset column to UTF-8
It is possible to swap the content charset of specific columns? I have a database with the following architecture: :: Idcontent (int autoincrement) :: Title (vchar) :: Summary (vchar) :: Content…
-
1
votes1
answer4117
viewsConvert ISO-8859-1 string to UTF-8 in java
My goal is to create a converter ISO-8859-1 for UTF-8. I already have this code: import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.IOException;…
-
1
votes1
answer559
viewsQstring accents in Qt 5.9 results in bizarre characters
Hi, good afternoon, I have a question I can’t fix at all the code is as follows:.... QTextStream stream( &file ); stream.setCodec("ISO 8859-1"); stream << "<p align=center><font…
-
0
votes2
answers20486
viewsHow to change the encoding of multiple files from ISO-8859-1 to UTF-8?
I have a project (in java) with more than 100 files, some of them are in ISO others in UTF8. How to change the encoding of all ISO files to UTF-8 without losing the special characters ?…
-
0
votes0
answers23
viewsPHP application windows server migration
Good afternoon guys. I am with an application on a server with encoding in ISO-8859-1 and I am migrating to another server with window. The application is working, except for errors with the special…
-
0
votes1
answer207
viewsValue coding format (input)
Problem: I am passing the value of an input to a frame but the encoding format is not as it should be - charset=ISO-8859-1 Trying that: <meta http-equiv="Content-Type" content="text/html;…
-
0
votes0
answers33
viewsHow do I accept request with ISO-8859-1 charset?
I have in my system a POST route for my clients to send information. Where a client is trying to send a POST request with the following header: Content-Type: application/x-www-form-urlencoded;…
-
-2
votes1
answer585
viewsAccent error in Python 2.7
During coding (below) there is an error regarding the accentuation of some words: Note: I am using Notepad++ and running python 2.7 on windows cmd Code: # encoding: utf-8 import os, sys print…