Questions tagged [iso-8859-15]

A single byte character set in the ISO/IEC 8859 series of ASCII standard character encodings, including the Euro currency symbol and a few other replacements.

ISO/IEC 8859-15:1999, Information technology — 8-bit single-byte coded graphic character sets — Part 15: Latin alphabet No. 9, is part of the ISO/IEC 8859 series of -based standard s, first edition published in 1999. It is informally referred to as Latin-9 (and was for a while called Latin-0).

It is similar to , and thus generally intended for “Western European” languages, but replaces some less common symbols with the sign and some letters that were now deemed missing in part 1 for the target use.

ISO-8859-15 is the IANA preferred charset name for this standard when supplemented with the C0 and C1 control codes from ISO-6429. Microsoft has assigned code page 28605 aka Windows-28605 to ISO-8859-15.

There were attempts to make ISO-8859-15 the default character set for 8-bit communication, but it was never able to supplant the popular ISO-8859-1. However, it did see some use as a character set for terminal or textual programs under Linux when the Euro sign was needed, but the use of full (Unicode) was not practical. All the printable characters from both ISO/IEC 8859-1 and ISO/IEC 8859-15 are also found in .

Changes from ISO-8859-1

Position  0xA4  0xA6  0xA8  0xB4  0xB8  0xBC  0xBD  0xBE
8859-1       ¤     ¦     ¨     ´     ¸     ¼     ½     ¾
8859-15      €     Š     š     Ž     ž     Œ     œ     Ÿ
26 questions
0
votes
0 answers

How to display Content ISO 8859-15 in utf8 CKEDITOR5

The content we load to ckeditor5 comes from a sql database which stores the data in iso 8859-15 encoding. The header of the page that display the text in ckeditor have content="text/html; charset=ISO-8859-15;" In this configuration, ckeditor5 does…
0
votes
0 answers

convert file type from "UTF-8 Unicode text" to "C source, ISO-8859 text"

I am a programmer. I write C code in Linux using GCC, and they can run correctly. Now, I want to run these codes in Windows system using Visual studio 2015. But it always show some errors and warnings as following: 1>f:\md\test_sm3_hmac_02\tools.h :…
Land
  • 171
  • 11
0
votes
1 answer

Write to a file with a specific encoding in Java

This might be related to my previous question (on how to convert "för" to "för") So I have a file that I create in my code. Right now I create it by the following code: FileWriter fwOne = new FileWriter(wordIndexPath); BufferedWriter wordIndex =…
MrJalapeno
  • 1,532
  • 3
  • 18
  • 37
0
votes
1 answer

Encoding: does it make sense trying to decode an ISO-8859-15 string with chinese characters into UTF-8 string?

I have the following string encoded with ISO-8859-15 stored inside of a file: DEBUG_RECEIVED: ???? The correct UTF-8 string though is: DEBUG_RECEIVED: 测试手机 Does it make sense trying to convert those wrong ???? characters again into 测试手机 (therefore…
tonix
  • 6,671
  • 13
  • 75
  • 136
0
votes
1 answer

converting characters from non "utf-8" characterized file to english equivilances in python

I have such lines in my file: M Aad 4 $ M Aadam 1 $ F Aadje 1 …
yusuf
  • 3,591
  • 8
  • 45
  • 86
0
votes
1 answer

ISO 8859-15 or ISO 8859-1 in SQL Server?

What collation should be use for ISO 8859-15 or ISO 8859-1 in SQL Server? I have looked around and cannot find references anywhere for this. Any help is greatly appreciated.
devmet
  • 95
  • 1
  • 8
0
votes
0 answers

IE 7/8/9 , £ displayed as "?" .. Ajax + POST + Jquery and JSON .. what can fix IE character encoding Issue

I have a string like "£300 ON 110406" which I'm displaying to User. following is the Ajax which is getting fired to the spring controller which returns the data from DB:- DB values are getting pushed through a separate Product , so can't change…
Rahul Razdan
  • 419
  • 4
  • 11
0
votes
1 answer

Replacing German Umlauts in an ISO 8859-15 file on an UTF 8 system

I have a bunch of CSV files that I read and plot with python and pandas. To add some more information about the file (or rather, the data it is about) into my plots, I am analyzing their headers, to extract various things from it (location of the…
JC_CL
  • 2,346
  • 6
  • 23
  • 36
0
votes
2 answers

All accented charaters are turned into question marks

I have a file that has accented charaters: ÇÍââÇÍ I need to change them into ISO-8859-15 encoding The code: String fileName = "C:/Users/User/AppData/Local/Temp/temp6893820181068878551.txt"; File file = new File(fileName); …
user3667171
0
votes
0 answers

Can not save a file in iso-8859-15

I need to generate a file in rails with encoding iso-8859-15. To make this, I am using the following code: File.open( "#{ Rails.root }/tmp/#{ id }", 'w:iso-8859-15:iso-8859-15' ) { |f| f << Model.info_in_iso-8859-15 } respond_to do |format| …
0
votes
1 answer

ISO 8859-15 to UTF-8 conversion in PHP

My string is "Die ARD hat eines der gr=F6=DFten Korrespondentennetze weltweit.". I guess itsISO 8859-15 and I want to convert it in utf-8. which will be "Die ARD hat eines der größten Korrespondentennetze weltweit." I tried the several…
user3291745
  • 2,629
  • 2
  • 12
  • 8
1
2