Reuters originally developed SCSU, then under the name RCSU for Reuters Compression Scheme for Unicode.2345
At first the Unicode Consortium considered it to be a character encoding,6 but in 1999 changed its mind: although it was still considered a transfer encoding syntax, for a while it was no longer considered a character encoding because different compressors might yield different outputs for the same text.7 However, in 2004 this decision was reverted and now SCSU is considered a compressing character encoding scheme, as opposed to a simple or compound character encoding scheme.89
Roman Czyborra (of GNU Unifont) wrote a decompressor.10 The IBM-contributed decompressor is found in International Components for Unicode, along with a compressor written in Java.11 Simpler reference codecs are available as attachments to TR6.
Symbian OS, an operating system for mobile phones and other mobile devices, uses SCSU to serialize strings.
SQL Server 2008 R2 uses SCSU to compress Unicode values (there meaning from strings in UCS-2 encoding) stored in nchar(n) and nvarchar(n) columns, achieving space savings between 15% and 50% (while UTF-8 only has this 50% reduction for ASCII subset of Unicode), depending on the language of the data.12
The following sections briefly describe the anatomy of a compressed SCSU stream. For a full description (matching that of a decompressor), see the UTS #6 document.
SCSU starts in the single-byte mode, which uses the compressed Window encoding. There exist commands to switch to a UTF-16BE "Unicode" mode, and to switch to the single-byte mode from that mode.
The core of SCSU lies in the windows for which the meanings of bytes 0x80-0xff are defined. There are eight static windows for simpler scripts and punctuation, and 6 types of dynamic windows (plus "half Unicode block" windows and custom Windows for the supplementary planes) for scripts making use of more characters.
Both simple and dynamic windows are selected by special command characters. For individual characters that do not fit into the current block, command characters for quoting are provided.
Because UTF-16 or UTF-8 text might occupy more space than its equivalent in pre-Unicode encodings did, one might want to use compression such as SCSU to mitigate this problem.13 In comparison with general-purpose compressors, it is not necessarily advantageous to use SCSU.14 Also, while it can be used as a text encoding, because of the stateful nature of the algorithm difficulties may arise when using it as an internal text representation since basic text operations become non-trivial.
Treated purely as a compression algorithm, SCSU is inferior to most commonly used general-purpose algorithms for texts of over a few kilobytes.
SCSU does have the advantage that it can usefully compress texts that are only a few characters long, whereas most full-scale compressors need hundreds of bytes of data to break even against their own overhead. In Symbian OS, SCSU is used even for Clipboard operations, e.g. Cut, Copy & Paste of small strings of text.
Supporting SCSU in HTML documents is prohibited by the W3C1516 and WHATWG17 HTML standards because HTML wasn't designed with non-ASCII-compatible encodings in mind. In the past, cross-site scripting vulnerabilities due to browsers' poor handling of such encodings have been demonstrated.18
"UTS #6: Compression Scheme for Unicode". 2005-05-06. Retrieved 2008-06-13. SCSU defines a compact encoding, which is sometimes useful. However, Unicode text is much more commonly stored and transmitted in UTF-8 which is less compact (except for ASCII), much simpler, and does not present any security issues. For longer texts, general-purpose compression is effective and common. https://www.unicode.org/reports/tr6/ ↩
"Ninth International Unicode Conference - Friday - Track B". https://unicode.org/iuc/iuc9/Friday2.html#b3 ↩
"Tenth International Unicode Conference - Conference Program". https://unicode.org/iuc/iuc10/program.html ↩
"Compression Scheme for Unicode". https://unicode.org/reports/tr6-10.html ↩
"A survey of Unicode compression" (PDF). https://www.unicode.org/notes/tn14/UnicodeCompression.pdf ↩
"UTR#17: Character Encoding Model". https://unicode.org/reports/tr17/tr17-2.html ↩
https://unicode.org/reports/tr17/tr17-3.html#Transfer Encoding Syntax https://unicode.org/reports/tr17/tr17-3.html#Transfer ↩
"UTR#17: Character Encoding Model". 2004-07-14. https://unicode.org/L2/L2004/04288-tr17-5d2.html#CharacterEncodingScheme ↩
"UTR#17: Unicode Character Encoding Model". unicode.org. Retrieved 2023-11-14. https://unicode.org/reports/tr17/ ↩
"This is a deflator to UTF-8 output for input compressed in SCSU". Archived from the original on 1999-09-08. https://web.archive.org/web/19990908230458/http://czyborra.com:80/scsu/scsu.c ↩
"International Components for Unicode". GitHub. 22 October 2021. https://github.com/unicode-org/icu/blob/3f043c7693e20c8cded76035918dad104e7256e3/icu4j/main/classes/charset/src/com/ibm/icu/charset/CharsetSCSU.java ↩
"Unicode Compression Implementation (SQL Server 2008 R2 Books Online)". Retrieved 2008-08-18. https://docs.microsoft.com/en-us/previous-versions/sql/sql-server-2008-r2/ee240835(v=sql.105) ↩
"Implementation Guidelines" (PDF). Archived from the original (PDF) on 2015-07-30. https://web.archive.org/web/20150730234318/http://www.unicode.org/versions/Unicode3.0.0/ch05.pdf ↩
"8.2.2.3. Character encodings". HTML 5.1 Standard. W3C. https://www.w3.org/TR/html51/syntax.html#character-encodings ↩
"8.2.2.3. Character encodings". HTML 5 Standard. W3C. https://www.w3.org/TR/html5/syntax.html#character-encodings ↩
"12.2.3.3 Character encodings". HTML Living Standard. WHATWG. https://html.spec.whatwg.org/multipage/parsing.html#character-encodings ↩
" - HTML". MDN Web Docs. Mozilla. Archived from the original on 3 October 2018. https://web.archive.org/web/20181003090922/https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta ↩