473,325 Members | 2,342 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,325 software developers and data experts.

Is it OK to include an ANSI file into a UTF-8 file?

aa
Is it OK to include an ANSI file into a UTF-8 file?
Jul 17 '05 #1
3 3360
aa <aa@virgin.net> wrote:
Is it OK to include an ANSI file into a UTF-8 file?


What is an ANSI file?

But the answer is obviuos, as long as the ANSI file is to the utf8
conventions the inclusion results in valid utf8.

So is it valid utf8? man utf-8:
<q>
PROPERTIES
The UTF-8 encoding has the following nice properties:

* UCS characters 0x00000000 to 0x0000007f (the classic US-ASCII charac-
ters) are encoded simply as bytes 0x00 to 0x7f (ASCII compatibility).
This means that files and strings which contain only 7-bit ASCII
characters have the same encoding under both ASCII and UTF-8.

* All UCS characters > 0x7f are encoded as a multi-byte sequence con-
sisting only of bytes in the range 0x80 to 0xfd, so no ASCII byte can
appear as part of another character and there are no problems with
e.g. '\0' or '/'.
[...]
* The bytes 0xfe and 0xff are never used in the UTF-8 encoding.

* The first byte of a multi-byte sequence which represents a single
non-ASCII UCS character is always in the range 0xc0 to 0xfd and indi-
cates how long this multi-byte sequence is. All further bytes in a
multi-byte sequence are in the range 0x80 to 0xbf. This allows easy
resynchronization and makes the encoding stateless and robust against
missing bytes.
[...]

ENCODING
The following byte sequences are used to represent a character. The
sequence to be used depends on the UCS code number of the character:

0x00000000 - 0x0000007F:
0xxxxxxx

0x00000080 - 0x000007FF:
110xxxxx 10xxxxxx

0x00000800 - 0x0000FFFF:
1110xxxx 10xxxxxx 10xxxxxx

0x00010000 - 0x001FFFFF:
11110xxx 10xxxxxx 10xxxxxx 10xxxxxx

0x00200000 - 0x03FFFFFF:
111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx

0x04000000 - 0x7FFFFFFF:
1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx

The xxx bit positions are filled with the bits of the character code
number in binary representation. Only the shortest possible multi-byte
sequence which can represent the code number of the character can be
used.

The UCS code values 0xd800-0xdfff (UTF-16 surrogates) as well as 0xfffe
and 0xffff (UCS non-characters) should not appear in conforming UTF-8
streams.
</q>

But why simply include so it might go wrong (now or in the future), when
you can use the mbstring/iconv functions to correctly convert whatever
is in the the include file to valid utf-8!

--

Daniel Tryba

Jul 17 '05 #2
aa
Thanks, Daniel, for the most comprehensive answer.
Just to check if I understand you correctly:
As ASCII characters have the same encoding under both ASCII and UTF-8 and
no ASCII byte can
appear as part of another character of UTF-8, then an ASCII included
into a UTF-8 file will be interpreted correctly.

Regarding ANSI - this is not my field and if I am wrong, please correct me.
I believe that ANSI it is 8 bit code i.e. 256 combinatons
The first 128 ( bytes 0x00 to 0x7f ) are ASCII. The remaining 128 bytes
(0x80 to 0xff ) can be interpreted as anything depending on the code table
applied. The code table applied depends on the OS system code page. If, for
example it is set to 850 then these are Western European characters like
French apostrophe or German double dot over letters etc.
If the system code page is set to 866, the last half is interpreted as
Cyrillics.
Also the system code page interpretation can be overruled by setting of
charset attribute in an HTML file or by encoding settings in the browser.

If my guesses above are correct, then what will happen to an ANSI file if
it is included into a UTF-8 file?
Using your terminology, how bytes 0x80 to 0xff will be interpreted?

"Daniel Tryba" <ne****************@canopus.nl> wrote in message
news:ck**********@news.tue.nl...
aa <aa@virgin.net> wrote:
Is it OK to include an ANSI file into a UTF-8 file?
What is an ANSI file?

But the answer is obviuos, as long as the ANSI file is to the utf8
conventions the inclusion results in valid utf8.

So is it valid utf8? man utf-8:
<q>
PROPERTIES
The UTF-8 encoding has the following nice properties:

* UCS characters 0x00000000 to 0x0000007f (the classic US-ASCII

charac- ters) are encoded simply as bytes 0x00 to 0x7f (ASCII compatibility). This means that files and strings which contain only 7-bit ASCII characters have the same encoding under both ASCII and UTF-8.

* All UCS characters > 0x7f are encoded as a multi-byte sequence con- sisting only of bytes in the range 0x80 to 0xfd, so no ASCII byte can appear as part of another character and there are no problems with e.g. '\0' or '/'.
[...]
* The bytes 0xfe and 0xff are never used in the UTF-8 encoding.

* The first byte of a multi-byte sequence which represents a single non-ASCII UCS character is always in the range 0xc0 to 0xfd and indi- cates how long this multi-byte sequence is. All further bytes in a multi-byte sequence are in the range 0x80 to 0xbf. This allows easy resynchronization and makes the encoding stateless and robust against missing bytes.
[...]

ENCODING
The following byte sequences are used to represent a character. The sequence to be used depends on the UCS code number of the character:
0x00000000 - 0x0000007F:
0xxxxxxx

0x00000080 - 0x000007FF:
110xxxxx 10xxxxxx

0x00000800 - 0x0000FFFF:
1110xxxx 10xxxxxx 10xxxxxx

0x00010000 - 0x001FFFFF:
11110xxx 10xxxxxx 10xxxxxx 10xxxxxx

0x00200000 - 0x03FFFFFF:
111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx

0x04000000 - 0x7FFFFFFF:
1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx

The xxx bit positions are filled with the bits of the character code number in binary representation. Only the shortest possible multi-byte sequence which can represent the code number of the character can be used.

The UCS code values 0xd800-0xdfff (UTF-16 surrogates) as well as 0xfffe and 0xffff (UCS non-characters) should not appear in conforming UTF-8 streams.
</q>

But why simply include so it might go wrong (now or in the future), when
you can use the mbstring/iconv functions to correctly convert whatever
is in the the include file to valid utf-8!

--

Daniel Tryba

Jul 17 '05 #3
aa <aa@virgin.net> wrote:
If my guesses above are correct, then what will happen to an ANSI file if
it is included into a UTF-8 file?
Using your terminology, how bytes 0x80 to 0xff will be interpreted?


That is undefined, it might result in a legal utf8 sequence, propably
will not.

I guess it could result in parse errrors in php code.

If this should happen in a string the was send to the browsers, the
illegal sequence will probably be displayed as an '?' or the unicode
char for an illegal char: http://www.unicode.org/charts/img/UFFFD.gif

[snipping 97 useless lines]

--

Daniel Tryba

Jul 17 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Michael L. | last post by:
Hi there, How can I convert an ANSI string to utf-8 ? Thanks!
4
by: bibsoconner | last post by:
Hi, I hope someone can please help me. I'm having a lot of trouble with schema files in .NET. I have produced a very simple example that uses "include" to include other schema files. It all...
0
by: Eric Giguere | last post by:
Back in August of 1990 I posted to the comp.std.c newsgroup a document I had written entitled "The ANSI Standard: A Summary for the C Programmer". I have converted it to HTML and reposted it as a...
9
by: zolli | last post by:
Hi, I've been banging my head against this for a while now. Hoping someone here can shed some light on what's going on. On including stdlib.h in a file, I'm seeing the following errors: ...
0
by: JJayaprakash | last post by:
Hi, help me to convert characters from Ansi to UTF-8. I have been trying by using System.Text.Encoding.Convert to change the bytes from Ansi to UTF-8. The characters get converted into something...
1
by: JJayaprakash | last post by:
Hi, help me to convert characters from Ansi to UTF-8. I have been trying by using System.Text.Encoding.Convert to change the bytes from Ansi to UTF-8. It is getting converted to different...
1
by: Markus | last post by:
Hello I try to write RTF files using text in UTF-8 encoding. Converting the text with utf8_decode() already fails on characters such as an apostrophe or an endash. Of course non-Latin-1...
1
by: Tejas | last post by:
Hi, I am using ldap_get_values() call to get the user attributes from LDAP. This call is returning the user attributes in UTF-8 encoding and its a PCHAR*. For normal English characters this...
1
by: Gandalf | last post by:
I used sqliteadmin to manage my sqlite database and I copy past queries translated from mysql phpmyadmin output it worked (little slowly but worked...), the only problem now is that sqliteadmin...
10
by: silverbob | last post by:
I am replacing my Javascript-called files with SSI, and I'm getting an unexpected result with my page footer. I can really use some help with this. The footer contains a copyright (left...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.