Cách Bỏ Chặn Số Điện Thoại Trên Samsung Bị Chặn Cuộc Gọi Đi?
Cách bỏ chặn số điện thoại trên Samsung như thế nào? Các bước thực hiện ra sao? Nếu bạn đang sở hữu sản phẩm này và băn khoăn những điều trên thì cùng theo...
UTF-8 is a variable-width character encoding used for electronic communication. Defined by the Unicode Standard, the name is derived from Unicode (or Universal Coded Character Set) Transformation Format – 8-bit.[1]
UTF-8 is a variable-width character encoding used for electronic communication. Defined by the Unicode Standard, the name is derived from Unicode (or Universal Coded Character Set) Transformation Format – 8-bit.[1]
UTF-8 is capable of encoding all 1,112,064[nb 1] valid character code points in Unicode using one to four one-byte (8-bit) code units. Code points with lower numerical values, which tend to occur more frequently, are encoded using fewer bytes. It was designed for backward compatibility with ASCII: the first 128 characters of Unicode, which correspond one-to-one with ASCII, are encoded using a single byte with the same binary value as ASCII, so that valid ASCII text is valid UTF-8-encoded Unicode as well. Since ASCII bytes do not occur when encoding non-ASCII code points into UTF-8, UTF-8 is safe to use within most programming and document languages that interpret certain ASCII characters in a special way, such as /
(slash) in filenames, \
(backslash) in escape sequences, and %
in printf.
[external_link_head]
UTF-8 was designed as a superior alternative to UTF-1, a proposed variable-width encoding with partial ASCII compatibility which lacked some features including self-synchronization and fully ASCII-compatible handling of characters such as slashes. Ken Thompson and Rob Pike produced the first implementation for the Plan 9 operating system in September 1992.[2][3] This led to its adoption by X/Open as its specification for FSS-UTF, which would first be officially presented at USENIX in January 1993 and subsequently adopted by the Internet Engineering Task Force (IETF) in RFC 2277 (BCP 18) for future Internet standards work, replacing Single Byte Character Sets such as Latin-1 in older RFCs.
UTF-8 is by far the most common encoding for the World Wide Web, accounting for over 97% of all web pages, and up to 100% for some languages, as of 2021.[4]
The official Internet Assigned Numbers Authority (IANA) code for the encoding is “UTF-8”.[5] All letters are upper-case, and the name is hyphenated. This spelling is used in all the Unicode Consortium documents relating to the encoding.
Alternatively, the name “utf-8” may be used by all standards conforming to the IANA list (which include CSS, HTML, XML, and HTTP headers),[6] as the declaration is case insensitive.[5]
Other variants, such as those that omit the hyphen or replace it with a space, i.e. “utf8” or “UTF 8“, are not accepted as correct by the governing standards.[7] Despite this, most web browsers can understand them, and so standards intended to describe existing practice (such as HTML5) may effectively require their recognition.[8]
Unofficially, UTF-8-BOM and UTF-8-NOBOM are sometimes used for text files which contain or don’t contain a byte order mark (BOM), respectively.[citation needed ] In Japan especially, UTF-8 encoding without a BOM is sometimes called “UTF-8N“.[9][10]
Windows XP and later, including all supported Windows versions, have codepage 65001, as a synonym for UTF-8 (since Windows 7 support for UTF-8 is better),[11] and Microsoft has a script for Windows 10, to enable it by default for its program Microsoft Notepad.[12]
In PCL, UTF-8 is called Symbol-ID “18N” (PCL supports 183 character encodings, called Symbol Sets, which potentially could be reduced to one, 18N, that is UTF-8).[13]
Since the restriction of the Unicode code-space to 21-bit values in 2003, UTF-8 is defined to encode code points in one to four bytes, depending on the number of significant bits in the numerical value of the code point. The following table shows the structure of the encoding. The x characters are replaced by the bits of the code point.
First code point | Last code point | Byte 1 | Byte 2 | Byte 3 | Byte 4 |
---|---|---|---|---|---|
U+0000 | U+007F | 0xxxxxxx | |||
U+0080 | U+07FF | 110xxxxx | 10xxxxxx | ||
U+0800 | U+FFFF | 1110xxxx | 10xxxxxx | 10xxxxxx | |
U+10000 | [nb 2]U+10FFFF | 11110xxx | 10xxxxxx | 10xxxxxx | 10xxxxxx |
The first 128 characters (US-ASCII) need one byte. The next 1,920 characters need two bytes to encode, which covers the remainder of almost all Latin-script alphabets, and also IPA extensions, Greek, Cyrillic, Coptic, Armenian, Hebrew, Arabic, Syriac, Thaana and N’Ko alphabets, as well as Combining Diacritical Marks. Three bytes are needed for characters in the rest of the Basic Multilingual Plane, which contains virtually all characters in common use,[14] including most Chinese, Japanese and Korean characters. Four bytes are needed for characters in the other planes of Unicode, which include less common CJK characters, various historic scripts, mathematical symbols, and emoji (pictographic symbols).
A “character” can actually take more than 4 bytes, e.g. an emoji flag character takes 8 bytes since it’s “constructed from a pair of Unicode scalar values”.[15]
Consider the encoding of the Euro sign, €:
The three bytes 11100010 10000010 10101100 can be more concisely written in hexadecimal, as E2 82 AC.
The following table summarises this conversion, as well as others with different lengths in UTF-8. The colors indicate how bits from the code point are distributed among the UTF-8 bytes. Additional bits added by the UTF-8 encoding process are shown in black.
[external_link offset=1]
Character | Binary code point | Binary UTF-8 | Hex UTF-8 | |
---|---|---|---|---|
$ | U+0024 | 010 0100 | 00100100 | 24 |
¢ | U+00A2 | 000 1010 0010 | 11000010 10100010 | C2 A2 |
ह | U+0939 | 0000 1001 0011 1001 | 11100000 10100100 10111001 | E0 A4 B9 |
€ | U+20AC | 0010 0000 1010 1100 | 11100010 10000010 10101100 | E2 82 AC |
한 | U+D55C | 1101 0101 0101 1100 | 11101101 10010101 10011100 | ED 95 9C |
? | U+10348 | 0 0001 0000 0011 0100 1000 | 11110000 10010000 10001101 10001000 | F0 90 8D 88 |
UTF-8’s use of six bits per byte to represent the actual characters being encoded, means that octal notation (which uses 3-bit groups) can aid in the comparison of UTF-8 sequences with one another and in manual conversion.[16]
First code point | Last code point | Code point | Byte 1 | Byte 2 | Byte 3 | Byte 4 |
---|---|---|---|---|---|---|
000 | 177 | xxx | xxx | |||
0200 | 3777 | xxyy | 3xx | 2yy | ||
04000 | 77777 | xyyzz | 34x | 2yy | 2zz | |
100000 | 177777 | 1xyyzz | 35x | 2yy | 2zz | |
0200000 | 4177777 | xyyzzww | 36x | 2yy | 2zz | 2ww |
With octal notation, the arbitrary octal digits, marked with x, y, z or w in the table, will remain unchanged when converting to or from UTF-8.
The following table summarizes usage of UTF-8 code units (individual bytes or octets) in a code page format. The upper half (0_ to 7_) is for bytes used only in single-byte codes, so it looks like a normal code page; the lower half is for continuation bytes (8_ to B_) and leading bytes (C_ to F_), and is explained further in the legend below.
Blue cells are 7-bit (single-byte) sequences. They must not be followed by a continuation byte.[17]
Orange cells with a large dot are a continuation byte.[18] The hexadecimal number shown after the + symbol is the value of the 6 bits they add. This character never occurs as the first byte of a multi-byte sequence.
White cells are the leading bytes for a sequence of multiple bytes,[19] the length shown at the left edge of the row. The text shows the Unicode blocks encoded by sequences starting with this byte, and the hexadecimal code point shown in the cell is the lowest character value encoded using that leading byte.
Red cells must never appear in a valid UTF-8 sequence. The first two red cells (C0 and C1) could be used only for a 2-byte encoding of a 7-bit ASCII character which should be encoded in 1 byte; as described below, such “overlong” sequences are disallowed.[20] To understand why this is, consider the character 128, hex 80, binary updating. To encode it as 2 characters, the low six bits are stored in the second character as 128 itself updating, but the upper two bits are stored in the first character as updating, making the minimum first character C2. The red cells in the F_ row (F5 to FD) indicate leading bytes of 4-byte or longer sequences that cannot be valid because they would encode code points larger than the U+10FFFF limit of Unicode (a limit derived from the maximum code point encodable in UTF-16[21]). FE and FF do not match any allowed character pattern and are therefore not valid start bytes.[22]
Pink cells are the leading bytes for a sequence of multiple bytes, of which some, but not all, possible continuation sequences are valid. E0 and F0 could start overlong encodings, in this case the lowest non-overlong-encoded code point is shown. F4 can start code points greater than U+10FFFF which are invalid. ED can start the encoding of a code point in the range U+D800–U+DFFF; these are invalid since they are reserved for UTF-16 surrogate halves.[23]
In principle, it would be possible to inflate the number of bytes in an encoding by padding the code point with leading 0s. To encode the Euro sign € from the above example in four bytes instead of three, it could be padded with leading 0s until it was 21 bits long – updating00, and encoded as 11110000 10000010 10000010 10101100 (or F0 82 82 AC in hexadecimal). This is called an overlong encoding.
The standard specifies that the correct encoding of a code point uses only the minimum number of bytes required to hold the significant bits of the code point. Longer encodings are called overlong and are not valid UTF-8 representations of the code point. This rule maintains a one-to-one correspondence between code points and their valid encodings, so that there is a unique valid encoding for each code point. This ensures that string comparisons and searches are well-defined.
Not all sequences of bytes are valid UTF-8. A UTF-8 decoder should be prepared for:
Many of the first UTF-8 decoders would decode these, ignoring incorrect bits and accepting overlong results. Carefully crafted invalid UTF-8 could make them either skip or create ASCII characters such as NUL, slash, or quotes. Invalid UTF-8 has been used to bypass security validations in high-profile products including Microsoft’s IIS web server[24] and Apache’s Tomcat servlet container.[25] RFC 3629 states “Implementations of the decoding algorithm MUST protect against decoding invalid sequences.”[7] The Unicode Standard requires decoders to “…treat any ill-formed code unit sequence as an error condition. This guarantees that it will neither interpret nor emit an ill-formed code unit sequence.”
Since RFC 3629 (November 2003), the high and low surrogate halves used by UTF-16 (U+D800 through U+DFFF) and code points not encodable by UTF-16 (those after U+10FFFF) are not legal Unicode values, and their UTF-8 encoding must be treated as an invalid byte sequence. Not decoding unpaired surrogate halves makes it impossible to store invalid UTF-16 (such as Windows filenames or UTF-16 that has been split between the surrogates) as UTF-8,[26] while it is possible with WTF-8.
Some implementations of decoders throw exceptions on errors.[27] This has the disadvantage that it can turn what would otherwise be harmless errors (such as a “no such file” error) into a denial of service. For instance early versions of Python 3.0 would exit immediately if the command line or environment variables contained invalid UTF-8.[28] An alternative practice is to replace errors with a replacement character. Since Unicode 6[29] (October 2010), the standard (chapter 3) has recommended a “best practice” where the error ends as soon as a disallowed byte is encountered. In these decoders E1,A0,C0 is two errors (2 bytes in the first one). This means an error is no more than three bytes long and never contains the start of a valid character, and there are 21,952 different possible errors.[30] The standard also recommends replacing each error with the replacement character “�” (U+FFFD).
If the UTF-16 Unicode byte order mark (BOM, U+FEFF) character is at the start of a UTF-8 file, the first three bytes will be 0xEF, 0xBB, 0xBF.
The Unicode Standard neither requires nor recommends the use of the BOM for UTF-8, but warns that it may be encountered at the start of a file trans-coded from another encoding.[31] While ASCII text encoded using UTF-8 is backward compatible with ASCII, this is not true when Unicode Standard recommendations are ignored and a BOM is added. A BOM can confuse software that isn’t prepared for it but can otherwise accept UTF-8, e.g. programming languages that permit non-ASCII bytes in string literals but not at the start of the file. Nevertheless, there was and still is software that always inserts a BOM when writing UTF-8, and refuses to correctly interpret UTF-8 unless the first character is a BOM (or the file only contains ASCII).[citation needed ]
Some programming languages and file formats have their own way of marking usage of encodings like UTF-8 in source code. Examples include HTML <meta charset="UTF-8"/>
and Python 2.7 # coding: utf-8
Use of the main encodings on the web from 2001 to 2012 as recorded by Google,[32] with UTF-8 overtaking all others in 2008 and over 60% of the web in 2012 (since then approaching 100%). The ASCII-only figure includes all web pages that only contain ASCII characters, regardless of the declared header.
UTF-8 is the recommendation from the WHATWG for HTML and DOM specifications,[33] and the Internet Mail Consortium recommends that all e-mail programs be able to display and create mail using UTF-8.[34][35] The World Wide Web Consortium recommends UTF-8 as the default encoding in XML and HTML (and not just using UTF-8, also stating it in metadata), “even when all characters are in the ASCII range .. Using non-UTF-8 encodings can have unexpected results”.[36] Many other standards only support UTF-8, e.g. open JSON exchange requires it.[37]
UTF-8 has been the most common encoding for the World Wide Web since 2008.[38] As of August 2021, UTF-8 accounts for on average 97.2% of all web pages; and 984 of the top 1,000 highest ranked web pages.[4] UTF-8 includes ASCII as a subset; almost no websites declare only ASCII used.[39] Several languages have 100.0% UTF-8 use.
For local text files UTF-8 usage is lower, and many legacy single-byte (and CJK multi-byte) encodings remain in use. The primary cause is editors that do not display or write UTF-8 unless the first character in a file is a byte order mark (BOM), making it impossible for other software to use UTF-8 without being rewritten to ignore the byte order mark on input and add it on output.[40][41] Recently there has been some improvement, Notepad on Windows 10 writes UTF-8 without a BOM by default,[42] and some system files on Windows 11 require UTF-8,[43] and almost all files on macOS and Linux are required to be UTF-8 (without a BOM).[citation needed ] Java, with its NIO API defaults to reading and writing UTF-8 files, and is moving to do so for all other file APIs.[44] It already does for all APIs on most platforms,[45] except Windows. “The choice of UTF-8 applies only to standard Java APIs and not to the Java language, which will continue to use UTF-16.”[44] Many other programming languages default to UTF-8 for I/O; or plan to migrate to UTF-8, such as Python which is preparing to “change the default encoding to UTF-8 [since it has] become the de-facto standard text encoding”.[46] Most databases support UTF-8 (sometimes the only option as with some file formats), including Microsoft’s since SQL Server 2019, resulting in 35% speed increase, and “nearly 50% reduction in storage requirements.”[47]
Internally in software usage is lower, with UTF-16 or UCS-2 in use, particularly on Windows, but also by JavaScript, Python,[48] Qt, and many other cross-platform software libraries. Compatibility with the Windows API is the primary reasons for this, though the belief that direct indexing of BMP improves speed also was a factor. More recent software has started to use UTF-8: the default string primitive used in Go,[49] Julia, Rust, Swift 5,[50] and PyPy[51] is UTF-8, a future version of Python intends to store strings as UTF-8,[52] and modern versions of Microsoft Visual Studio use UTF-8 internally[53] (however still require a command-line switch to read or write UTF-8[54]). UTF-8 is the “only text encoding mandated to be supported by the C++ standard”, as of C++20.[55] As of May 2019, Microsoft reversed its course of only supporting UTF-16 for the Windows API, providing the ability to set UTF-8 as the “code page” for the multi-byte API (previously this was impossible), and now Microsoft recommends (programmers) using UTF-8 for Universal Windows Platform (UWP) apps,[56] while continuing to maintain a legacy “Unicode” (meaning UTF-16) interface.[57]
The International Organization for Standardization (ISO) set out to compose a universal multi-byte character set in 1989. The draft ISO 10646 standard contained a non-required annex called UTF-1 that provided a byte stream encoding of its 32-bit code points. This encoding was not satisfactory on performance grounds, among other problems, and the biggest problem was probably that it did not have a clear separation between ASCII and non-ASCII: new UTF-1 tools would be backward compatible with ASCII-encoded text, but UTF-1-encoded text could confuse existing code expecting ASCII (or extended ASCII), because it could contain continuation bytes in the range 0x21–0x7E that meant something else in ASCII, e.g., 0x2F for ‘/’, the Unix path directory separator, and this example is reflected in the name and introductory text of its replacement. The table below was derived from a textual description in the annex.
Number of bytes |
First code point |
Last code point |
Byte 1 | Byte 2 | Byte 3 | Byte 4 | Byte 5 |
---|---|---|---|---|---|---|---|
1 | U+0000 | U+009F | 00–9F | ||||
2 | U+00A0 | U+00FF | A0 | A0–FF | |||
2 | U+0100 | U+4015 | A1–F5 | 21–7E, A0–FF | |||
3 | U+4016 | U+38E2D | F6–FB | 21–7E, A0–FF | 21–7E, A0–FF | ||
5 | U+38E2E | U+7FFFFFFF | FC–FF | 21–7E, A0–FF | 21–7E, A0–FF | 21–7E, A0–FF | 21–7E, A0–FF |
In July 1992, the X/Open committee XoJIG was looking for a better encoding. Dave Prosser of Unix System Laboratories submitted a proposal for one that had faster implementation characteristics and introduced the improvement that 7-bit ASCII characters would only represent themselves; all multi-byte sequences would include only bytes where the high bit was set. The name File System Safe UCS Transformation Format (FSS-UTF) and most of the text of this proposal were later preserved in the final specification.[58][59][60][61]
Number of bytes |
First code point |
Last code point |
Byte 1 | Byte 2 | Byte 3 | Byte 4 | Byte 5 |
---|---|---|---|---|---|---|---|
1 | U+0000 | U+007F | 0xxxxxxx | ||||
2 | U+0080 | U+207F | 10xxxxxx | 1xxxxxxx | |||
3 | U+2080 | U+8207F | 110xxxxx | 1xxxxxxx | 1xxxxxxx | ||
4 | U+82080 | U+208207F | 1110xxxx | 1xxxxxxx | 1xxxxxxx | 1xxxxxxx | |
5 | U+2082080 | U+7FFFFFFF | 11110xxx | 1xxxxxxx | 1xxxxxxx | 1xxxxxxx | 1xxxxxxx |
In August 1992, this proposal was circulated by an IBM X/Open representative to interested parties. A modification by Ken Thompson of the Plan 9 operating system group at Bell Labs made it somewhat less bit-efficient than the previous proposal but crucially allowed it to be self-synchronizing, letting a reader start anywhere and immediately detect byte sequence boundaries. It also abandoned the use of biases and instead added the rule that only the shortest possible encoding is allowed; the additional loss in compactness is relatively insignificant, but readers now have to look out for invalid encodings to avoid reliability and especially security issues. Thompson’s design was outlined on September 2, 1992, on a placemat in a New Jersey diner with Rob Pike. In the following days, Pike and Thompson implemented it and updated Plan 9 to use it throughout, and then communicated their success back to X/Open, which accepted it as the specification for FSS-UTF.[60]
[external_link offset=2]
Number of bytes |
First code point |
Last code point |
Byte 1 | Byte 2 | Byte 3 | Byte 4 | Byte 5 | Byte 6 |
---|---|---|---|---|---|---|---|---|
1 | U+0000 | U+007F | 0xxxxxxx | |||||
2 | U+0080 | U+07FF | 110xxxxx | 10xxxxxx | ||||
3 | U+0800 | U+FFFF | 1110xxxx | 10xxxxxx | 10xxxxxx | |||
4 | U+10000 | U+1FFFFF | 11110xxx | 10xxxxxx | 10xxxxxx | 10xxxxxx | ||
5 | U+200000 | U+3FFFFFF | 111110xx | 10xxxxxx | 10xxxxxx | 10xxxxxx | 10xxxxxx | |
6 | U+4000000 | U+7FFFFFFF | 1111110x | 10xxxxxx | 10xxxxxx | 10xxxxxx | 10xxxxxx | 10xxxxxx |
UTF-8 was first officially presented at the USENIX conference in San Diego, from January 25 to 29, 1993. The Internet Engineering Task Force adopted UTF-8 in its Policy on Character Sets and Languages in RFC 2277 (BCP 18) for future Internet standards work, replacing Single Byte Character Sets such as Latin-1 in older RFCs.[62]
In November 2003, UTF-8 was restricted by RFC 3629 to match the constraints of the UTF-16 character encoding: explicitly prohibiting code points corresponding to the high and low surrogate characters removed more than 3% of the three-byte sequences, and ending at U+10FFFF removed more than 48% of the four-byte sequences and all five- and six-byte sequences.
There are several current definitions of UTF-8 in various standards documents:
They supersede the definitions given in the following obsolete works:
They are all the same in their general mechanics, with the main differences being on issues such as allowed range of code point values and safe handling of invalid input.
Some of the important features of this encoding are as follows:
The following implementations show slight differences from the UTF-8 specification. They are incompatible with the UTF-8 specification and may be rejected by conforming UTF-8 applications.
Unicode Technical Report #26[68] assigns the name CESU-8 to a nonstandard variant of UTF-8, in which Unicode characters in supplementary planes are encoded using six bytes, rather than the four bytes required by UTF-8. CESU-8 encoding treats each half of a four-byte UTF-16 surrogate pair as a two-byte UCS-2 character, yielding two three-byte UTF-8 characters, which together represent the original supplementary character. Unicode characters within the Basic Multilingual Plane appear as they would normally in UTF-8. The Report was written to acknowledge and formalize the existence of data encoded as CESU-8, despite the Unicode Consortium discouraging its use, and notes that a possible intentional reason for CESU-8 encoding is preservation of UTF-16 binary collation.
CESU-8 encoding can result from converting UTF-16 data with supplementary characters to UTF-8, using conversion methods that assume UCS-2 data, meaning they are unaware of four-byte UTF-16 supplementary characters. It is primarily an issue on operating systems which extensively use UTF-16 internally, such as Microsoft Windows.[citation needed ]
In Oracle Database, the UTF8
character set uses CESU-8 encoding, and is deprecated. The AL32UTF8
character set uses standards-compliant UTF-8 encoding, and is preferred.[69][70]
CESU-8 is prohibited for use in HTML5 documents.[71][72][73]
In MySQL, the utf8mb3
character set is defined to be UTF-8 encoded data with a maximum of three bytes per character, meaning only Unicode characters in the Basic Multilingual Plane (i.e. from UCS-2) are supported. Unicode characters in supplementary planes are explicitly not supported. utf8mb3
is deprecated in favor of the utf8mb4
character set, which uses standards-compliant UTF-8 encoding. utf8
is an alias for utf8mb3
, but is intended to become an alias to utf8mb4
in a future release of MySQL.[74] It is possible, though unsupported, to store CESU-8 encoded data in utf8mb3
, by handling UTF-16 data with supplementary characters as though it is UCS-2.
Modified UTF-8 (MUTF-8) originated in the Java programming language. In Modified UTF-8, the null character (U+0000) uses the two-byte overlong encoding 11000000 10000000 (hexadecimal C0 80), instead of updating (hexadecimal 00).[75] Modified UTF-8 strings never contain any actual null bytes but can contain all Unicode code points including U+0000,[76] which allows such strings (with a null byte appended) to be processed by traditional null-terminated string functions. All known Modified UTF-8 implementations also treat the surrogate pairs as in CESU-8.
In normal usage, the language supports standard UTF-8 when reading and writing strings through InputStreamReader
and OutputStreamWriter
(if it is the platform’s default character set or as requested by the program). However it uses Modified UTF-8 for object serialization[77] among other applications of DataInput
and DataOutput
, for the Java Native Interface,[78] and for embedding constant strings in class files.[79]
The dex format defined by Dalvik also uses the same modified UTF-8 to represent string values.[80] Tcl also uses the same modified UTF-8[81] as Java for internal representation of Unicode data, but uses strict CESU-8 for external data.
In WTF-8 (Wobbly Transformation Format, 8-bit) unpaired surrogate halves (U+D800 through U+DFFF) are allowed.[82] This is necessary to store possibly-invalid UTF-16, such as Windows filenames. Many systems that deal with UTF-8 work this way without considering it a different encoding, as it is simpler.[83]
(The term “WTF-8” has also been used humorously to refer to erroneously doubly-encoded UTF-8[84][85] sometimes with the implication that CP1252 bytes are the only ones encoded.)[86]
Version 3 of the Python programming language treats each byte of an invalid UTF-8 bytestream as an error (see also changes with new UTF-8 mode in Python 3.7[87]); this gives 128 different possible errors. Extensions have been created to allow any byte sequence that is assumed to be UTF-8 to be losslessly transformed to UTF-16 or UTF-32, by translating the 128 possible error bytes to reserved code points, and transforming those code points back to error bytes to output UTF-8. The most common approach is to translate the codes to U+DC80…U+DCFF which are low (trailing) surrogate values and thus “invalid” UTF-16, as used by Python’s PEP 383 (or “surrogateescape”) approach.[88] Another encoding called MirBSD OPTU-8/16 converts them to U+EF80…U+EFFF in a Private Use Area.[89] In either approach, the byte value is encoded in the low eight bits of the output code point.
These encodings are very useful because they avoid the need to deal with “invalid” byte strings until much later, if at all, and allow “text” and “data” byte arrays to be the same object. If a program wants to use UTF-16 internally these are required to preserve and use filenames that can use invalid UTF-8;[90] as the Windows filesystem API uses UTF-16, the need to support invalid UTF-8 is less there.[88]
For the encoding to be reversible, the standard UTF-8 encodings of the code points used for erroneous bytes must be considered invalid. This makes the encoding incompatible with WTF-8 or CESU-8 (though only for 128 code points). When re-encoding it is necessary to be careful of sequences of error code points which convert back to valid UTF-8, which may be used by malicious software to get unexpected characters in the output, though this cannot produce ASCII characters so it is considered comparatively safe, since malicious sequences (such as cross-site scripting) usually rely on ASCII characters.[90]
Previously under XP (and, unverified, but probably Vista, too) for loops simply did not work while codepage 65001 was active
This PEP proposes changing the default filesystem encoding on Windows to utf-8, and changing all filesystem functions to use the Unicode APIs for filesystem paths. [..] can correctly round-trip all characters used in paths (on POSIX with surrogateescape handling; on Windows because str maps to the native representation). On Windows bytes cannot round-trip all characters used in paths
in reality, you usually just assume UTF-8 since that is by far the most common encoding.
Microsoft is now defaulting to saving new text files as UTF-8 without BOM as shown below.
Make sure your LayoutModification.json uses UTF-8 encoding.
For example, changing an existing column data type from NCHAR(10) to CHAR(10) using an UTF-8 enabled collation, translates into nearly 50% reduction in storage requirements. [..] In the ASCII range, when doing intensive read/write I/O on UTF-8 , we measured an average 35% performance improvement over UTF-16 using clustered tables with a non-clustered index on the string column, and an average 11% performance improvement over UTF-16 using a heap.
Switching to UTF-8 fulfills one of String’s long-term goals to enable high-performance processing, [..] also lays the groundwork for providing even more performant APIs in the future
Until we drop legacy Unicode object, it is very hard to try other Unicode implementation like UTF-8 based implementation in PyPy
Visual Studio uses UTF-8 as the internal character encoding during conversion between the source character set and the execution character set.
As of Windows Version 1903 (May 2019 Update), you can use the ActiveCodePage property in the appxmanifest for packaged apps, or the fusion manifest for unpackaged apps, to force a process to use UTF-8 as the process code page. [..]CP_ACP
equates toCP_UTF8
only if running on Windows Version 1903 (May 2019 Update) or above and the ActiveCodePage property described above is set to UTF-8. Otherwise, it honors the legacy system code page. We recommend usingCP_UTF8
explicitly.
[external_footer]
Cách Bỏ Chặn Số Điện Thoại Trên Samsung Bị Chặn Cuộc Gọi Đi?
11:31 20/03/2022 Hỏi đáp
Cách bỏ chặn số điện thoại trên Samsung như thế nào? Các bước thực hiện ra sao? Nếu bạn đang sở hữu sản phẩm này và băn khoăn những điều trên thì cùng theo...
Thủ thuật cách giấu số điện thoại khi gọi trên Android và iPhone
11:29 20/03/2022 Hỏi đáp
Cách giấu số điện thoại khi gọi là một thủ thuật nhỏ thú vị mà ít người biết đến hay sử dụng. Tuy nhiên trong một số trường hợp đặc biệt cách ẩn số...
Hướng dẫn cách xem số điện thoại bị ẩn trên Zalo | https://timgicodo.com
11:22 20/03/2022 Hỏi đáp
Bạn muốn xem số điện thoại bị ẩn trên Zalo của bạn hữu và người dùng khác nhưng lại không biết cách làm thế nào ? Trong bài viết này, Canh Rau sẽ hướng...
Cách cài đặt quay số nhanh trên iPhone bằng Phím tắt cực dễ
11:14 20/03/2022 Hỏi đáp
Shortcuts là một ứng dụng tiện ích tuyệt vời của Apple giúp người dùng tiết kiệm được nhiều thời gian thao tác trên iPhone, iPad. Tuy nhiên không phải ai cũng biết cách sử dụng nó. Bài viết...
2 Cách chèn số điện thoại vào ảnh trên điện thoại cực đơn giản
11:13 20/03/2022 Hỏi đáp
Đóng góp bởi Lữ Phước Khôi Cập nhật 04/09/2021 Bạn muốn chèn số điện thoại vào những tấm ảnh của mình nhưng vẫn chưa biết cách, bạn muốn thêm thông điệp cho những bức...
Thủ tục đổi tên trên hóa đơn tiền điện trực tiếp, online đơn giản 2021
11:11 20/03/2022 Hỏi đáp
Biên tập bởi Đặng Lê Huy Đăng 3 tháng trước 6.727 Bạn đang đọc: Thủ tục đổi tên trên hóa đơn tiền điện trực tiếp, online đơn giản 2021 Đứng đúng tên sử dụng...
4 cách tra cứu tiền nước cực kỳ đơn giản bằng Zalo, MoMo,…
11:09 20/03/2022 Hỏi đáp
Bạn bị mất hóa đơn tiền nước khi đã gửi về nhà nhưng chưa kịp thanh toán, muốn kiểm soát hóa đơn để đối chiếu. Hôm nay, mình sẽ hướng dẫn 4 cách tra...
Hướng dẫn thay đổi số điện thoại SmartBanking BIDV Online
11:07 20/03/2022 Hỏi đáp
Thay đổi số điện thoại SmartBanking BIDV Online trong các trường hợp bị mất hoặc thay đổi số điện thoại cũ. Khách hàng sẽ nhận được tin nhắn báo về số điện thoại mới...
Tạo Số Điện Thoại Ảo Trung Quốc Nhận Sms, Số Điện Thoại Ảo Trung Quốc
11:04 20/03/2022 Hỏi đáp
1. +86 Nhận SMS trực tuyến miễn phí Trung quốc | Số điện thoại … Bạn đang xem : Tạo số điện thoại ảo trung quốc nhận sms Tác giả: vi.mytempsms.com Đánh giá: 4...