Questions tagged [latin1]

Latin1 - ISO-8859-1.

A character set defines the way a sequence of bytes is converted into a sequence of characters. This particular character set is known as Latin-1, or ISO-8859-1. Of the 256 characters in Latin-1, 128 are the characters in the ASCII, the characters that typically appear on a standard U.S. English keyboard (and accompanying nonprinting special characters such as ASCII BEL). The remaining 128 consist of special and accented characters that are used regularly in the Western European languages.

To specify these characters in an HTML document (or on StackExchange), you can enter the character entity (if one is defined) or the numeric entity. For example, to cause Æ to appear in a document, you could enter either Æ or &#198. Note that the case of character entities is significant. Specifying æ causes æ to be displayed.

231 questions
-1
votes
1 answer

My Latin-1 coding tag is not working in python 3.4 but works fine in python 2.7

I am trying to make a web page using Bottle.py, Mongodb and Python. I had this tag on top of my python 2.7 code: # #-- coding: latin1 -- I use the coding for getting bottle requests such as: CheckboxTr=…
Vic
  • 766
  • 5
  • 6
-1
votes
1 answer

MySQL function to convert a text field encoded with Latin1 to UTF8

I want to convert my current MySQL database encoded with latin1 to a new database encoded with utf-8. How could I import my old data (text fields) correctly to the tables of the new database with utf-8 encoding? I thought I can use a query as…
Ahmad
  • 8,811
  • 11
  • 76
  • 141
-1
votes
1 answer

PDF to text mess up latin accents

I have a few pdf's written in Brazillian Portuguese which I'd like to parse and process. I tried using PDFBox text extraction command line tools( with no arguments at all ) but I get the following results: Cão ends up as C~ ao Also, copying and…
Grasshopper
  • 1,749
  • 1
  • 14
  • 30
-1
votes
3 answers

What happens if your input file contains some unsupported character?

I have this text file which might contain some unsupported characters in the Latin1 character set, which is the default character set of my JVM. What would those characters be turned into when my java program tries to read from the file? Concretely,…
One Two Three
  • 22,327
  • 24
  • 73
  • 114
-2
votes
1 answer

UTF8 letters issue in latin mysql database

I have latin1 MySQL database and it is too late to convert it to utf8. When I search for text that contains (French letter for example), I get same result with English letter. Example: when I search for "tést", I get "test" from MySQL. How can I…
Houranis
  • 361
  • 2
  • 4
  • 16
-2
votes
2 answers

Datas from mysql database don't display on website

I started my Project with UTF8 Database for the development. At the time of project completion, my Professor gave me the database of type Latin1. Because of Type Conflicting my project is not working properly, result my server side code doesn't…
MikaelTlp
  • 3
  • 1
1 2 3
15
16