Option 1: =UNICHAR(HEX2DEC("10ffff"))
, or =UNICHAR(1114111)
. This is a string consisting of the largest character value which LibreOffice allows. The formula is ugly, but it is likely to work in most language contests. The HEX2DEC(“10ffff”) alternative is just another way of writing decimal number 1114111. It alludes to the underlying Unicode character encoding, which may make the intention a little more clear to some readers, and more mystifying to others.
Option 2: Ω
, which is a Greek script character, U+03A9 GREEK CAPITAL LETTER OMEGA. English-language collations are likely to put Greek after all Latin letters. Omega is reasonably recognisable to English-readers, and clearly not Latin script. Some English-language keyboards can type Omega directly (e.g. on macOS 12 Monterey). In any case, Omega is a simple character to copy, paste, and use in cells. (Thanks to @erAck for suggesting use of Greek.)
LibreOffice Calc’s user-oriented documentation has surprisingly little to say about this. The definition of the <
and >
operators appeal to the reader’s intuitive understanding of what “less than” and “greater than” mean. The developer documentation has more.
String comparison is related to collation. “In the context of LibreOffice, [collation is] ordering of textual information according to ordering rules local to a cultural community. The rules for alphabetical ordering in Latin writing differ from country to country, and there are completely different ordering rules in other cultural communities. LibreOffice supports localized collation through its I18N API.” That ordering can control both the comparative operators like “less than”, and large-scale operations like Calc’s sort. The options for Calc’s sort include language, “for the sorting rules”, and numerous options.
Thus, LibreOffice uses carefully developed rules for string comparison (and collation generally). But, they are complex and not easily summarised. They certainly depend on what language LibreOffice is using in the context of your formula.
Here is some more information about collation in the LibreOffice technology internals.