I know it exist ISO-8859-9/Latin-5 or ISO-8859-15/Latin-9, but recently I had to manage some messages encoded with ISO-8859-9/Latin-9 format. What does it exactly mean?
1
There are 1 best solutions below
Related Questions in ENCODING
- When sanitize/encode while implementing tags system like on SO
- Generating synthetic data for .ORC file in python
- WebClient.UploadData is returning control characters after non-ascii characters
- How to switch encoding of LibreOffice strings in Java UNO API?
- Userform to answer original userform
- Encoding problem on MySQL: Why some non-ASCII characters get encoded on more than 4 bytes?
- What encoding does the 'text' response type option in HttpClient use?
- Issue downloading audio with ytdlp on a raspberry pi
- KeyError: "['Building Age', 'Floor', 'Number of Floors'] not in index"
- FFMPEG fast quality video encoding without quality loss & less storage occupancy (maybe using GPU)
- Encoding attributes in an Genetic Algorithm
- React - MP4 - The file was loaded in a wrong encoding - 'UTF-8'
- How to re-encode an audio to match another one, to avoid re-encoding the whole audio
- Sqlalchemy - PostgreSQL - UnicodeDecodeError
- Calculate difference in encoding WITHOUT actually writing to a file?
Related Questions in ASCII
- Dart: how to convert Hex String to Ascii string
- Reading character entity reference tag content in C++
- Convet byte[] in ASCII
- Visual C++ - how can I turn a unicode character into char or string?
- Saving a numpy array in ascii format
- Ascii doc syntaxes not provide consistent output & not working as expected
- Why does $'\141' convert to ASCII 'a' as expected, but constructing the same string doesn't convert?
- How would one render a QR code in the logs of a GitHub workflow?
- Is there a recommended way to plot data using ascii symbols?
- Converting ASCII to Unary
- Doesnt \n remain in the buffer?
- Are we able to specify the Answer's XML encoding? Or does Mturk control that?
- C ASCII to Hex (atoh) Function
- ASCII to decimal conversion
- Bcrypt Password Truncation issue solution or Hashing Long Passwords with Bcrypt in Java?
Related Questions in ISO
- Mount .iso file with python
- Is the alternative operator in ABNF match first or longest?
- Multiple DOC files to be converted to ISOSTS XML files
- How to change style/design of AppShortcuts in Shortcuts App (tiles vs circle group)
- Structure of MPEG-4 "©xyz" box
- How to prove the accuracy of an OS files burn with dd from my PC to flash disk (for very old system)?
- Is it ok to omit the void parameter in a C function definition?
- Reconstructing a date from year, isoWeek and day with MomentJS
- How can i use the qsort_s function in my c program?
- How could I define a function `lookup_country_iso_codes` which returns the 2-digit and 3-digit ISO country code
- cannot get the link to download win 11 ISO file it seems the link generated but not available to me
- Location Access Issue with WKWebView - iOS 17+
- The SENSOR_SENSITIVITY and SENSOR_EXPOSURE_TIME settings are not applied when capturing
- External Dependency Manager in Unity installing Cocoapods succeeded but the pod tool cannot be found
- EMF ISO20022 Repository - Message Definitions link to Data Dictionary
Related Questions in LATIN
- Implementing Latin Hypercube sampling from skewed distributions in Java
- How many partitions should be used for a latin hypercube sample, versus computational time
- Is there a way to make JS Intl object to support classical Latin language?
- fabricJS i-text with Roboto-Regular fontFamily render different in ubuntu and window
- How to make 2 elements the same width?
- How to capitalize polish special letters in C++?
- Mix letters (russian + latin) in a specific bibliographic reference on a mainly latin-font, IEEEtrans style, Latex article
- Latin numbers (such as "xxv," "xxxv," "iii," and "ii") in R
- How to change encoding (using latin encoding) in pyreadr Python
- How to convert hungarian mysql entries to utf8
- FileOutputStream prints weird latin characters at the end in java
- Powershell replacing Unicode characters like "çöşİğü"
- Vim – document navigation don't work on cyryllic texts in Windows but works in Linux
- Converting utf-8 characters to scandic letters
- Pig Latin Parameters in Store Command
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There is ISO-8859-9 which is called Latin-5.
And there is ISO-8859-15 which is called Latin-9.
Yes, it is confusing. In my opinion it's simplest to always only use the ISO-8859-n moniker. That avoids potential confusions.
So "ISO-8859-9/Latin-9" is probably a typo (or someone wrongly thought that the suffix is identical for the "ISO-8859-" and the "Latin-" prefix).
Depending on the source of the data, you can guess which one they meant. ISO-8859-9 is used for Turkish text and ISO-8859-15 is basically the modern replacement for ISO-8859-1 (covering most of Western Europe, mostly used because it has the € symbol).
Source: ISO/IEC 8859 Wiki page.