Reputation: 2114
I was reading the documentation for StringBuffer
, in particular the reverse() method. That documentation mentions something about surrogate pairs. What is a surrogate pair in this context? And what are low and high surrogates?
Upvotes: 198
Views: 92109
Reputation: 4566
Adding some more info to the above answers from this post.
Tested in Java-12, should work in all Java versions above 5.
As mentioned here: https://stackoverflow.com/a/47505451/2987755,
whichever character (whose Unicode is above U+FFFF) is represented as a surrogate pair, which Java stores as a pair of char values, i.e. the single Unicode character is represented as two adjacent Java characters.
As we can see in the following example.
Length:
"π".length() //2, Expectations was it should return 1
"π".codePointCount(0,"π".length()) //1, To get the number of Unicode characters in a Java String
Equality:
Represent "π" to String using Unicode \ud83c\udf09
as below and check equality.
"π".equals("\ud83c\udf09") // true
βJava does not support UTF-32
"π".equals("\u1F309") // false
You can convert Unicode character to Java String
"π".equals(new String(Character.toChars(0x0001F309))) //true
String.substring() does not consider supplementary characters
"ππ".substring(0,1) //"?"
"ππ".substring(0,2) //"π"
"ππ".substring(0,4) //"ππ"
To solve this we can use String.offsetByCodePoints(int index, int codePointOffset)
"ππ".substring(0,"ππ".offsetByCodePoints(0,1) // "π"
"ππ".substring(2,"ππ".offsetByCodePoints(1,2)) // "π"
Iterating Unicode string with BreakIterator
Sorting Strings with Unicode java.text.Collator
Character's toUpperCase()
, toLowerCase()
, methods should not be used, instead, use String uppercase and lowercase of particular locale.
Character.isLetter(char ch)
does not support, better used Character.isLetter(int codePoint)
, for each methodName(char ch)
method in the Character class there will be type of methodName(int codePoint)
which can handle supplementary characters.
Specify charset in String.getBytes()
, converting from Bytes to String, InputStreamReader
, OutputStreamWriter
New Methods are added in Java-21, java.lang.Character.isEmoji
and new Regex related patterns, emoji data from here, This new functions can be helpful if you are using any library as mentioned here
public static void main(String[] args) {
System.out.println('βΊ' + " isEmoji : " + isEmoji('βΊ')); // true
System.out.println('β' + " isEmoji : " + isEmoji('β')); // true
System.out.println('ΕΎ' + " isEmoji : " + isEmoji('ΕΎ')); // false
emojiChecks("A");
emojiChecks("Β©");
emojiChecks("βΊ");
emojiChecks("\uD83D\uDE0A");
}
private static void emojiChecks(String emoji) {
// If any string is not emoji then it can not be moji_Component, Emoji_Presentation, Emoji_Modifier, and Emoji_Modifier_Base.
// Ref: https://unicode.org/reports/tr51/#Emoji_Properties_and_Data_Files
final Pattern emojiPattern = Pattern.compile("\\p{IsEmoji}");
final Pattern emojiModifierBasePattern = Pattern.compile("\\p{IsEmoji_Modifier_Base}");
final Pattern emojiComponentPattern = Pattern.compile("\\p{IsEmoji_Component}");
final Pattern emojiPresentationPattern = Pattern.compile("\\p{IsEmoji_Presentation}");
final Pattern isExtendedPictographicPattern = Pattern.compile("\\p{IsExtended_Pictographic}");
System.out.println(emoji + " IsEmoji: " + emojiPattern.matcher(emoji).matches());
System.out.println(emoji + " IsEmojiModifierBase: " + emojiModifierBasePattern.matcher(emoji).matches());
System.out.println(emoji + " IsEmojiComponent: " + emojiComponentPattern.matcher(emoji).matches());
System.out.println(emoji + " IsEmojiPresentation: " + emojiPresentationPattern.matcher(emoji).matches());
System.out.println(emoji + " IsExtended_Pictographic: " + isExtendedPictographicPattern.matcher(emoji).matches());
System.out.println("----------------------------------------");
}
// output
βΊ isEmoji : true
β isEmoji : true
ΕΎ isEmoji : false
A IsEmoji: false
A IsEmojiModifierBase: false
A IsEmojiComponent: false
A IsEmojiPresentation: false
A IsExtended_Pictographic: false
----------------------------------------
Β© IsEmoji: true
Β© IsEmojiModifierBase: false
Β© IsEmojiComponent: false
Β© IsEmojiPresentation: false
Β© IsExtended_Pictographic: true
----------------------------------------
βΊ IsEmoji: true
βΊ IsEmojiModifierBase: false
βΊ IsEmojiComponent: false
βΊ IsEmojiPresentation: false
βΊ IsExtended_Pictographic: true
----------------------------------------
π IsEmoji: true
π IsEmojiModifierBase: false
π IsEmojiComponent: false
π IsEmojiPresentation: true
π IsExtended_Pictographic: true
----------------------------------------
Ref:
https://coolsymbol.com/emojis/emoji-for-copy-and-paste.html#objects
https://www.online-toolz.com/tools/text-unicode-entities-convertor.php
https://www.ibm.com/developerworks/library/j-unicode/index.html
https://www.oracle.com/technetwork/articles/javaee/supplementary-142654.html
More info on example image1 image2
Other terms worth to explore: Normalization, BiDi
Upvotes: 69
Reputation: 9119
Small preface
Unicode represents code points. Each code point can be encoded in 8-, 16,- or 32-bit blocks according to the Unicode standard.
Prior to the Version 3.1, mostly in use was 8-bit enconding, known as UTF-8, and 16-bit encoding, known as UCS-2 or βUniversal Character Set coded in 2 octetsβ. UTF-8 encodes Unicode points as a sequence of 1-byte blocks, while UCS-2 always takes 2 bytes:
A = 41 - one block of 8-bits with UTF-8
A = 0041 - one block of 16-bits with UCS-2
Ξ© = CE A9 - two blocks of 8-bits with UTF-8
Ξ© = 03A9 - one block of 16-bits with UCS-2
Problem
The consortium thought that 16 bits would be enough to cover any human-readable language, which gives 2^16 = 65536 possible code values. This was true for the Plane 0, also known as BMP or Basic Multilingual Plane, that includes 55,445 of 65536 code points today. BMP covers almost every human language in the world, including Chinese-Japanese-Korean symbols (CJK).
The time passed and new Asian character sets were added, Chinese symbols took more than 70,000 points alone. Now, there are even Emoji points as part of the standard πΊ. New 16 "additional" Planes were added. The UCS-2 room was not enough to cover anything bigger than Plane-0.
Unicode decision
With those changes, BMP is covered with 1 block of 16 bits in UTF-16, while all "Supplementary characters" are covered with Surrogate Pairs presenting 2 blocks by 16 bits each, totally 1024x1024 = 1 048 576 points.
A high surrogate precedes a low surrogate. Any deviation from this rule is considered as a bad encoding. For example, a surrogate without a pair is incorrect, a low surrogate standing before a high surrogate is incorrect.
π, 'MUSICAL SYMBOL G CLEF', is encoded in UTF-16 as a pair of surrogates 0xD834 0xDD1E (2 by 2 bytes),
in UTF-8 as 0xF0 0x9D 0x84 0x9E (4 by 1 byte),
in UTF-32 as 0x0001D11E (1 by 4 bytes).
Current situation
Many historic details were suppressed to follow the topic β.
The latest Unicode Standard can be found at http://www.unicode.org/versions/latest
Upvotes: 19
Reputation: 1101
Early Java versions represented Unicode characters using the 16-bit char data type. This design made sense at the time, because all Unicode characters had values less than 65,535 (0xFFFF) and could be represented in 16 bits. Later, however, Unicode increased the maximum value to 1,114,111 (0x10FFFF). Because 16-bit values were too small to represent all of the Unicode characters in Unicode version 3.1, 32-bit values β called code points β were adopted for the UTF-32 encoding scheme. But 16-bit values are preferred over 32-bit values for efficient memory use, so Unicode introduced a new design to allow for the continued use of 16-bit values. This design, adopted in the UTF-16 encoding scheme, assigns 1,024 values to 16-bit high surrogates(in the range U+D800 to U+DBFF) and another 1,024 values to 16-bit low surrogates(in the range U+DC00 to U+DFFF). It uses a high surrogate followed by a low surrogate β a surrogate pair β to represent (the product of 1,024 and 1,024)1,048,576 (0x100000) values between 65,536 (0x10000) and 1,114,111 (0x10FFFF) .
Upvotes: 100
Reputation: 4092
A surrogate pair is two 'code units' in UTF-16 that make up one 'code point'. The Java documentation is stating that these 'code points' will still be valid, with their 'code units' ordered correctly, after the reverse. It further states that two unpaired surrogate code units may be reversed and form a valid surrogate pair. Which means that if there are unpaired code units, then there is a chance that the reverse of the reverse may not be the same!
Notice, though, the documentation says nothing about Graphemes -- which are multiple codepoints combined. Which means e and the accent that goes along with it may still be switched, thus placing the accent before the e. Which means if there is another vowel before the e it may get the accent that was on the e.
Yikes!
Upvotes: 5
Reputation: 59443
The term "surrogate pair" refers to a means of encoding Unicode characters with high code-points in the UTF-16 encoding scheme.
In the Unicode character encoding, characters are mapped to values between 0x0 and 0x10FFFF.
Internally, Java uses the UTF-16 encoding scheme to store strings of Unicode text. In UTF-16, 16-bit (two-byte) code units are used. Since 16 bits can only contain the range of characters from 0x0 to 0xFFFF, some additional complexity is used to store values above this range (0x10000 to 0x10FFFF). This is done using pairs of code units known as surrogates.
The surrogate code units are in two ranges known as "high surrogates" and "low surrogates", depending on whether they are allowed at the start or end of the two-code-unit sequence.
Upvotes: 162
Reputation: 30969
What that documentation is saying is that invalid UTF-16 strings may become valid after calling the reverse
method since they might be the reverses of valid strings. A surrogate pair (discussed here) is a pair of 16-bit values in UTF-16 that encode a single Unicode code point; the low and high surrogates are the two halves of that encoding.
Upvotes: 26
Reputation: 13289
Surrogate pairs refer to UTF-16's way of encoding certain characters, see http://en.wikipedia.org/wiki/UTF-16/UCS-2#Code_points_U.2B10000..U.2B10FFFF
Upvotes: 5