<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.crosswire.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Griello</id>
		<title>CrossWire Bible Society - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.crosswire.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Griello"/>
		<link rel="alternate" type="text/html" href="https://wiki.crosswire.org/Special:Contributions/Griello"/>
		<updated>2026-04-17T14:26:37Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.7</generator>

	<entry>
		<id>https://wiki.crosswire.org/index.php?title=Encoding&amp;diff=2810</id>
		<title>Encoding</title>
		<link rel="alternate" type="text/html" href="https://wiki.crosswire.org/index.php?title=Encoding&amp;diff=2810"/>
				<updated>2008-01-18T13:57:14Z</updated>
		
		<summary type="html">&lt;p&gt;Griello: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As many people are making mistakes with encoding, here is a small text where I try to explain what does exist.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
Computers are working on words of bits, usually 8, 16, 32 or 64 today. Those words are meanless for the computer, they can be interpreted in many ways, as numbers, as instructions, as characters, as true/false values...&lt;br /&gt;
&lt;br /&gt;
An encoding is a set of rules defining how to translate a sequence of words into a sequence of characters.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Single byte encoding ==&lt;br /&gt;
As computer can easily work with groups of bit called bytes, one of the first solution was to use a different byte value for every character. It's easy to understand and to program: every byte encode a single character; it's space efficient (memory was really expensive), you can size a string by counting bytes... You can have up to 256 characters as a byte can have 256 different values.&lt;br /&gt;
&lt;br /&gt;
When computers was mostly an occidental story, [http://en.wikipedia.org/wiki/ASCII ASCII] was one of the first and most successful encoding. It define 128 characters, including upper case and lower case of the Latin alphabet, digits, punctuation and control. Values above 127 are not defined (allowing extensions or controls values). It is a good set of characters to write in English.&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/EBCDIC EBCDIC] is another byte encoding defined by IBM at the same time which include mostly the sames characters but values above 127 are not free.&lt;br /&gt;
&lt;br /&gt;
As many languages are using characters not included in the original ASCII set; many country, or group of country defined new encoding based on the ASCII encoding. Missing characters are filled in the unused 128 values (above 127). As 128 values is not enough for every earth alphabet, we have many of theses encodings. One of the most successful are [http://en.wikipedia.org/wiki/ISO/IEC_8859 ISO-8859] and in particular [http://en.wikipedia.org/wiki/ISO/IEC_8859-1 ISO-8859-1] which include characters for 29 western European and African languages.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Unicode ==&lt;br /&gt;
Theses encoding where 1 byte correspond to 1 character are really great for English, it's working well for languages based on the Latin alphabet, but is really bad for other alphabets. Some of them use more than 256 signs.&lt;br /&gt;
&lt;br /&gt;
You can not write a text with characters from different encoding; and when sending a text, you always have to agree on a common encoding.&lt;br /&gt;
&lt;br /&gt;
Here is Unicode. But first, learn this: '''Unicode is not an encoding'''&lt;br /&gt;
&lt;br /&gt;
[http://en.wikipedia.org/wiki/Unicode Unicode] is an industry standard where every character in any real language, past or present (about 100,000 characters), is having a different numeric value called a code-point. This code-point can be recorded in many ways. The first 128 code-points are the same values used in the ASCII encoding.&lt;br /&gt;
&lt;br /&gt;
Did you remember, Unicode is not an encoding? Ok, in fact, Unicode also define many different encodings to store code-point.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Multi-bytes encoding ==&lt;br /&gt;
One word = One character was a great rule, let's keep it. When Unicode was young, Code-point where all under 65536. So we can represent every character with a 2 bytes word, (a 16 bits word). This is called [http://en.wikipedia.org/wiki/UTF-16/UCS-2 UCS2]. UCS2 is deprecated.&lt;br /&gt;
&lt;br /&gt;
Now, Code-point are under 2^32, so we can represent every character with a 4 bytes word, (a 32 bit word). This is called [http://en.wikipedia.org/wiki/UTF-32/UCS-4 UCS4], or UTF32.&lt;br /&gt;
&lt;br /&gt;
For an English text, because every character is encoded with 4 bytes, the size if 4 time bigger than the same text in ASCII encoding.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Variable byte length encoding ==&lt;br /&gt;
UCS2 and UCS4 are great, but it takes too much space, and if your old program does work with 1 byte = 1 character, it will not work. We need an encoding where ASCII characters are the same, but with the ability to encode any Unicode character.&lt;br /&gt;
&lt;br /&gt;
So [http://en.wikipedia.org/wiki/UTF-8 UTF-8] was created. It's a variable-byte length encoding. ASCII character are the same as in an ASCII encoded text; and other characters are encoded using 2, 3 or 4 characters. You should use this for all your Sword files now.&lt;br /&gt;
&lt;br /&gt;
For programs written to use UCS2, there is also an extension, [http://en.wikipedia.org/wiki/UTF-16/UCS-2 UTF-16] is designed to use a single 2 bytes word for characters under 65536, and a pair of words above.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Common mistakes ==&lt;br /&gt;
If you use a wrong encoding, some characters will not be displayed correctly as the computer decoded it using incorrect rules.&lt;br /&gt;
&lt;br /&gt;
The two most common encoding are ISO-8859-1 and UTF-8&lt;br /&gt;
&lt;br /&gt;
=== An UTF-8 text decoded as ISO-8859-1 (or ISO-8859-*) ===&lt;br /&gt;
&lt;br /&gt;
You will see two or three characters for non-ASCII ones, usually Ã and ©.&lt;br /&gt;
 Et Dieu vit la lumière, qu'elle était bonne; et Dieu sépara la lumière d'avec les ténèbres.&lt;br /&gt;
will show as&lt;br /&gt;
 Et Dieu vit la lumiÃ¨re, qu'elle Ã©tait bonne; et Dieu sÃ©para la lumiÃ¨re d'avec les tÃ©nÃ¨bres.&lt;br /&gt;
&lt;br /&gt;
=== An ISO-8859-1 text decoded as UTF-8 ===&lt;br /&gt;
&lt;br /&gt;
The UTF-8 decoder will find an invalid multi-byte character, it can report an error, or put question marks or squares instead:&lt;br /&gt;
&lt;br /&gt;
 Et Dieu vit la lumière, qu'elle était bonne; et Dieu sépara la lumière d'avec les ténèbres.&lt;br /&gt;
will show as&lt;br /&gt;
 Et Dieu vit la lumi?re, qu'elle ?tait bonne; et Dieu s?para la lumi?re d'avec les t?n?bres.&lt;br /&gt;
&lt;br /&gt;
Warning: If you see squares, it can also be a font problem! This happen if you're using a font which does not define some characters you are using.&lt;/div&gt;</summary>
		<author><name>Griello</name></author>	</entry>

	<entry>
		<id>https://wiki.crosswire.org/index.php?title=Frontends:Eloquent&amp;diff=2118</id>
		<title>Frontends:Eloquent</title>
		<link rel="alternate" type="text/html" href="https://wiki.crosswire.org/index.php?title=Frontends:Eloquent&amp;diff=2118"/>
				<updated>2007-05-15T20:03:01Z</updated>
		
		<summary type="html">&lt;p&gt;Griello: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''MacSword''' is an open source Study Bible software that uses [[The Sword Project]]. It was made for Mac OS X.&lt;br /&gt;
&lt;br /&gt;
Anyone willing to provide screenshots should do so below, or edit this further.&lt;br /&gt;
&lt;br /&gt;
== Features: ==&lt;br /&gt;
&lt;br /&gt;
* Supports multiple bible versions&lt;br /&gt;
* Parallel view (up to five versions)&lt;br /&gt;
* Commentaries, Dictionaries, General Books&lt;br /&gt;
* Footnotes, Text notes, Cross References&lt;br /&gt;
* Strongs Hebrew/Greek numbers&lt;br /&gt;
* Morphological Analysis codes&lt;br /&gt;
* Headings and other text formatting (Words of Christ in red)&lt;br /&gt;
* Search function&lt;br /&gt;
* Non-Latin script (Hebrew, Greek, etc)&lt;br /&gt;
* Different [[Bible]] translations&lt;br /&gt;
*Commentaries&lt;br /&gt;
*Dictionaries&lt;br /&gt;
* Development is ongoing on both sword libs and MacSword, so check back every so often.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
*[http://www.macsword.com MacSword home page]&lt;/div&gt;</summary>
		<author><name>Griello</name></author>	</entry>

	<entry>
		<id>https://wiki.crosswire.org/index.php?title=Frontends:Eloquent&amp;diff=2117</id>
		<title>Frontends:Eloquent</title>
		<link rel="alternate" type="text/html" href="https://wiki.crosswire.org/index.php?title=Frontends:Eloquent&amp;diff=2117"/>
				<updated>2007-05-15T19:56:45Z</updated>
		
		<summary type="html">&lt;p&gt;Griello: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''MacSword''' is an open source Study Bible software that uses [[The Sword Project]]. It was made for Mac OS X.&lt;br /&gt;
&lt;br /&gt;
Some of the features include:&lt;br /&gt;
&lt;br /&gt;
*Text Search&lt;br /&gt;
*Tooltips&lt;br /&gt;
*Different [[Bible]] translations&lt;br /&gt;
*Commentaries&lt;br /&gt;
*Dictionaries&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
*[http://www.macsword.com MacSword home page]&lt;/div&gt;</summary>
		<author><name>Griello</name></author>	</entry>

	<entry>
		<id>https://wiki.crosswire.org/index.php?title=Frontends:Eloquent&amp;diff=2116</id>
		<title>Frontends:Eloquent</title>
		<link rel="alternate" type="text/html" href="https://wiki.crosswire.org/index.php?title=Frontends:Eloquent&amp;diff=2116"/>
				<updated>2007-05-15T19:56:01Z</updated>
		
		<summary type="html">&lt;p&gt;Griello: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''MacSword''' is an open source [[Study Bible]] software that uses [[The Sword Project]]. It was made for [[Mac OS X]].&lt;br /&gt;
&lt;br /&gt;
Some of the features include:&lt;br /&gt;
&lt;br /&gt;
*Text Search&lt;br /&gt;
*Tooltips&lt;br /&gt;
*Different [[Bible]] translations&lt;br /&gt;
*Commentaries&lt;br /&gt;
*Dictionaries&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
*[http://www.macsword.com MacSword home page]&lt;/div&gt;</summary>
		<author><name>Griello</name></author>	</entry>

	</feed>