QChar Class
The QChar class provides a 16-bit Unicode character. More...
| Header: | #include <QChar> |
| qmake: | QT += core |
Note: All functions in this class are reentrant.
Public Types
| enum | Category { Mark_NonSpacing, Mark_SpacingCombining, Mark_Enclosing, Number_DecimalDigit, Number_Letter, …, Symbol_Other } |
| enum | Decomposition { NoDecomposition, Canonical, Circle, Compat, Final, …, Wide } |
| enum | Direction { DirAL, DirAN, DirB, DirBN, DirCS, …, DirWS } |
| enum | JoiningType { Joining_None, Joining_Causing, Joining_Dual, Joining_Right, Joining_Left, Joining_Transparent } |
| enum | Script { Script_Unknown, Script_Inherited, Script_Common, Script_Adlam, Script_Ahom, …, Script_ZanabazarSquare } |
| enum | SpecialCharacter { Null, Tabulation, LineFeed, FormFeed, CarriageReturn, …, LastValidCodePoint } |
| enum | UnicodeVersion { Unicode_1_1, Unicode_2_0, Unicode_2_1_2, Unicode_3_0, Unicode_3_1, …, Unicode_Unassigned } |
Detailed Description
In Qt, Unicode characters are 16-bit entities without any markup or structure. This class represents such an entity. It is lightweight, so it can be used everywhere. Most compilers treat it like an unsigned short.
QChar provides a full complement of testing/classification functions, converting to and from other formats, converting from composed to decomposed Unicode, and trying to compare and case-convert if you ask it to.
The classification functions include functions like those in the standard C++ header <cctype> (formerly <ctype.h>), but operating on the full range of Unicode characters, not just for the ASCII range. They all return true if the character is a certain type of character; otherwise they return false. These classification functions are isNull() (returns true if the character is '\0'), isPrint() (true if the character is any sort of printable character, including whitespace), isPunct() (any sort of punctation), isMark() (Unicode Mark), isLetter() (a letter), isNumber() (any sort of numeric character, not just 0-9), isLetterOrNumber(), and isDigit() (decimal digits). All of these are wrappers around category() which return the Unicode-defined category of each character. Some of these also calculate the derived properties (for example isSpace() returns true if the character is of category Separator_* or an exceptional code point from Other_Control category).
QChar also provides direction(), which indicates the "natural" writing direction of this character. The joiningType() function indicates how the character joins with it's neighbors (needed mostly for Arabic or Syriac) and finally hasMirrored(), which indicates whether the character needs to be mirrored when it is printed in it's "unnatural" writing direction.
Composed Unicode characters (like ring) can be converted to decomposed Unicode ("a" followed by "ring above") by using decomposition().
In Unicode, comparison is not necessarily possible and case conversion is very difficult at best. Unicode, covering the "entire" world, also includes most of the world's case and sorting problems. operator==() and friends will do comparison based purely on the numeric Unicode value (code point) of the characters, and toUpper() and toLower() will do case changes when the character has a well-defined uppercase/lowercase equivalent. For locale-dependent comparisons, use QString::localeAwareCompare().
The conversion functions include unicode() (to a scalar), toLatin1() (to scalar, but converts all non-Latin-1 characters to 0), row() (gives the Unicode row), cell() (gives the Unicode cell), digitValue() (gives the integer value of any of the numerous digit characters), and a host of constructors.
QChar provides constructors and cast operators that make it easy to convert to and from traditional 8-bit chars. If you defined QT_NO_CAST_FROM_ASCII and QT_NO_CAST_TO_ASCII, as explained in the QString documentation, you will need to explicitly call fromLatin1(), or use QLatin1Char, to construct a QChar from an 8-bit char, and you will need to call toLatin1() to get the 8-bit value back.
For more information see "About the Unicode Character Database".
See also Unicode, QString, and QLatin1Char.
Member Type Documentation
enum QChar::Category
This enum maps the Unicode character categories.
The following characters are normative in Unicode:
| Constant | Value | Description |
|---|---|---|
QChar::Mark_NonSpacing | 0 | Unicode class name Mn |
QChar::Mark_SpacingCombining | 1 | Unicode class name Mc |
QChar::Mark_Enclosing | 2 | Unicode class name Me |
QChar::Number_DecimalDigit | 3 | Unicode class name Nd |
QChar::Number_Letter | 4 | Unicode class name Nl |
QChar::Number_Other | 5 | Unicode class name No |
QChar::Separator_Space | 6 | Unicode class name Zs |
QChar::Separator_Line | 7 | Unicode class name Zl |
QChar::Separator_Paragraph | 8 | Unicode class name Zp |
QChar::Other_Control | 9 | Unicode class name Cc |
QChar::Other_Format | 10 | Unicode class name Cf |
QChar::Other_Surrogate | 11 | Unicode class name Cs |
QChar::Other_PrivateUse | 12 | Unicode class name Co |
QChar::Other_NotAssigned | 13 | Unicode class name Cn |
The following categories are informative in Unicode:
| Constant | Value | Description |
|---|---|---|
QChar::Letter_Uppercase | 14 | Unicode class name Lu |
QChar::Letter_Lowercase | 15 | Unicode class name Ll |
QChar::Letter_Titlecase | 16 | Unicode class name Lt |
QChar::Letter_Modifier | 17 | Unicode class name Lm |
QChar::Letter_Other | 18 | Unicode class name Lo |
QChar::Punctuation_Connector | 19 | Unicode class name Pc |
QChar::Punctuation_Dash | 20 | Unicode class name Pd |
QChar::Punctuation_Open | 21 | Unicode class name Ps |
QChar::Punctuation_Close | 22 | Unicode class name Pe |
QChar::Punctuation_InitialQuote | 23 | Unicode class name Pi |
QChar::Punctuation_FinalQuote | 24 | Unicode class name Pf |
QChar::Punctuation_Other | 25 | Unicode class name Po |
QChar::Symbol_Math | 26 | Unicode class name Sm |
QChar::Symbol_Currency | 27 | Unicode class name Sc |
QChar::Symbol_Modifier | 28 | Unicode class name Sk |
QChar::Symbol_Other | 29 | Unicode class name So |
See also category().
enum QChar::Decomposition
This enum type defines the Unicode decomposition attributes. See the Unicode Standard for a description of the values.
| Constant | Value |
|---|---|
QChar::NoDecomposition | 0 |
QChar::Canonical | 1 |
QChar::Circle | 8 |
QChar::Compat | 16 |
QChar::Final | 6 |
QChar::Font | 2 |
QChar::Fraction | 17 |
QChar::Initial | 4 |
QChar::Isolated | 7 |
QChar::Medial | 5 |
QChar::Narrow | 13 |
QChar::NoBreak | 3 |
QChar::Small | 14 |
QChar::Square | 15 |
QChar::Sub | 10 |
QChar::Super | 9 |
QChar::Vertical | 11 |
QChar::Wide | 12 |
See also decomposition().
enum QChar::Direction
This enum type defines the Unicode direction attributes. See the Unicode Standard for a description of the values.
In order to conform to C/C++ naming conventions "Dir" is prepended to the codes used in the Unicode Standard.
| Constant | Value | Description |
|---|---|---|
QChar::DirAL | 13 | |
QChar::DirAN | 5 | |
QChar::DirB | 7 | |
QChar::DirBN | 18 | |
QChar::DirCS | 6 | |
QChar::DirEN | 2 | |
QChar::DirES | 3 | |
QChar::DirET | 4 | |
QChar::DirFSI | 21 | Since Qt 5.3 |
QChar::DirL | 0 | |
QChar::DirLRE | 11 | |
QChar::DirLRI | 19 | Since Qt 5.3 |
QChar::DirLRO | 12 | |
QChar::DirNSM | 17 | |
QChar::DirON | 10 | |
QChar::DirPDF | 16 | |
QChar::DirPDI | 22 | Since Qt 5.3 |
QChar::DirR | 1 | |
QChar::DirRLE | 14 | |
QChar::DirRLI | 20 | Since Qt 5.3 |
QChar::DirRLO | 15 | |
QChar::DirS | 8 | |
QChar::DirWS | 9 |
See also direction().
enum QChar::JoiningType
since 5.3
This enum type defines the Unicode joining type attributes. See the Unicode Standard for a description of the values.
In order to conform to C/C++ naming conventions "Joining_" is prepended to the codes used in the Unicode Standard.
| Constant | Value |
|---|---|
QChar::Joining_None | 0 |
QChar::Joining_Causing | 1 |
QChar::Joining_Dual | 2 |
QChar::Joining_Right | 3 |
QChar::Joining_Left | 4 |
QChar::Joining_Transparent | 5 |
See also joiningType().
enum QChar::Script
This enum type defines the Unicode script property values.
For details about the Unicode script property values see Unicode Standard Annex #24.
In order to conform to C/C++ naming conventions "Script_" is prepended to the codes used in the Unicode Standard.
| Constant | Value | Description |
|---|---|---|
QChar::Script_Unknown | 0 | For unassigned, private-use, noncharacter, and surrogate code points. |
QChar::Script_Inherited | 1 | For characters that may be used with multiple scripts and that inherit their script from the preceding characters. These include nonspacing marks, enclosing marks, and zero width joiner/non-joiner characters. |
QChar::Script_Common | 2 | For characters that may be used with multiple scripts and that do not inherit their script from the preceding characters. |
QChar::Script_Adlam | 132 | Since Qt 5.11 |
QChar::Script_Ahom | 126 | Since Qt 5.6 |
QChar::Script_AnatolianHieroglyphs | 127 | Since Qt 5.6 |
QChar::Script_Arabic | 8 | |
QChar::Script_Armenian | 6 | |
QChar::Script_Avestan | 80 | |
QChar::Script_Balinese | 62 | |
QChar::Script_Bamum | 84 | |
QChar::Script_BassaVah | 104 | Since Qt 5.5 |
QChar::Script_Batak | 93 | |
QChar::Script_Bengali | 12 | |
QChar::Script_Bhaiksuki | 133 | Since Qt 5.11 |
QChar::Script_Bopomofo | 36 | |
QChar::Script_Brahmi | 94 | |
QChar::Script_Braille | 54 | |
QChar::Script_Buginese | 55 | |
QChar::Script_Buhid | 44 | |
QChar::Script_CanadianAboriginal | 29 | |
QChar::Script_Carian | 75 | |
QChar::Script_CaucasianAlbanian | 103 | Since Qt 5.5 |
QChar::Script_Chakma | 96 | |
QChar::Script_Cham | 77 | |
QChar::Script_Cherokee | 28 | |
QChar::Script_Chorasmian | 153 | Since Qt 5.15 |
QChar::Script_Coptic | 46 | |
QChar::Script_Cuneiform | 63 | |
QChar::Script_Cypriot | 53 | |
QChar::Script_Cyrillic | 5 | |
QChar::Script_Deseret | 41 | |
QChar::Script_Devanagari | 11 | |
QChar::Script_DivesAkuru | 154 | Since Qt 5.15 |
QChar::Script_Dogra | 142 | Since Qt 5.15 |
QChar::Script_Duployan | 105 | Since Qt 5.5 |
QChar::Script_EgyptianHieroglyphs | 81 | |
QChar::Script_Elbasan | 106 | Since Qt 5.5 |
QChar::Script_Elymaic | 149 | Since Qt 5.15 |
QChar::Script_Ethiopic | 27 | |
QChar::Script_Georgian | 25 | |
QChar::Script_Glagolitic | 57 | |
QChar::Script_Gothic | 40 | |
QChar::Script_Grantha | 107 | Since Qt 5.5 |
QChar::Script_Greek | 4 | |
QChar::Script_Gujarati | 14 | |
QChar::Script_GunjalaGondi | 143 | Since Qt 5.15 |
QChar::Script_Gurmukhi | 13 | |
QChar::Script_Han | 37 | |
QChar::Script_Hangul | 26 | |
QChar::Script_HanifiRohingya | 144 | Since Qt 5.15 |
QChar::Script_Hanunoo | 43 | |
QChar::Script_Hatran | 128 | Since Qt 5.6 |
QChar::Script_Hebrew | 7 | |
QChar::Script_Hiragana | 34 | |
QChar::Script_ImperialAramaic | 87 | |
QChar::Script_InscriptionalPahlavi | 90 | |
QChar::Script_InscriptionalParthian | 89 | |
QChar::Script_Javanese | 85 | |
QChar::Script_Kaithi | 92 | |
QChar::Script_Kannada | 18 | |
QChar::Script_Katakana | 35 | |
QChar::Script_KayahLi | 72 | |
QChar::Script_Kharoshthi | 61 | |
QChar::Script_KhitanSmallScript | 155 | Since Qt 5.15 |
QChar::Script_Khmer | 32 | |
QChar::Script_Khojki | 109 | Since Qt 5.5 |
QChar::Script_Khudawadi | 123 | Since Qt 5.5 |
QChar::Script_Lao | 22 | |
QChar::Script_Latin | 3 | |
QChar::Script_Lepcha | 68 | |
QChar::Script_Limbu | 47 | |
QChar::Script_LinearA | 110 | Since Qt 5.5 |
QChar::Script_LinearB | 49 | |
QChar::Script_Lisu | 83 | |
QChar::Script_Lycian | 74 | |
QChar::Script_Lydian | 76 | |
QChar::Script_Mahajani | 111 | Since Qt 5.5 |
QChar::Script_Makasar | 145 | Since Qt 5.15 |
QChar::Script_Malayalam | 19 | |
QChar::Script_Mandaic | 95 | |
QChar::Script_Manichaean | 112 | Since Qt 5.5 |
QChar::Script_Marchen | 134 | Since Qt 5.11 |
QChar::Script_MasaramGondi | 138 | Since Qt 5.11 |
QChar::Script_Medefaidrin | 146 | Since Qt 5.15 |
QChar::Script_MeeteiMayek | 86 | |
QChar::Script_MendeKikakui | 113 | Since Qt 5.5 |
QChar::Script_MeroiticCursive | 97 | |
QChar::Script_MeroiticHieroglyphs | 98 | |
QChar::Script_Miao | 99 | |
QChar::Script_Modi | 114 | Since Qt 5.5 |
QChar::Script_Mongolian | 33 | |
QChar::Script_Mro | 115 | Since Qt 5.5 |
QChar::Script_Multani | 129 | Since Qt 5.6 |
QChar::Script_Myanmar | 24 | |
QChar::Script_Nabataean | 117 | Since Qt 5.5 |
QChar::Script_Nandinagari | 150 | Since Qt 5.15 |
QChar::Script_Newa | 135 | Since Qt 5.11 |
QChar::Script_NewTaiLue | 56 | |
QChar::Script_Nko | 66 | |
QChar::Script_Nushu | 139 | Since Qt 5.11 |
QChar::Script_NyiakengPuachueHmong | 151 | Since Qt 5.15 |
QChar::Script_Ogham | 30 | |
QChar::Script_OlChiki | 69 | |
QChar::Script_OldHungarian | 130 | Since Qt 5.6 |
QChar::Script_OldItalic | 39 | |
QChar::Script_OldNorthArabian | 116 | Since Qt 5.5 |
QChar::Script_OldPermic | 120 | Since Qt 5.5 |
QChar::Script_OldPersian | 60 | |
QChar::Script_OldSogdian | 147 | Since Qt 5.15 |
QChar::Script_OldSouthArabian | 88 | |
QChar::Script_OldTurkic | 91 | |
QChar::Script_Oriya | 15 | |
QChar::Script_Osage | 136 | Since Qt 5.11 |
QChar::Script_Osmanya | 52 | |
QChar::Script_PahawhHmong | 108 | Since Qt 5.5 |
QChar::Script_Palmyrene | 118 | Since Qt 5.5 |
QChar::Script_PauCinHau | 119 | Since Qt 5.5 |
QChar::Script_PhagsPa | 65 | |
QChar::Script_Phoenician | 64 | |
QChar::Script_PsalterPahlavi | 121 | Since Qt 5.5 |
QChar::Script_Rejang | 73 | |
QChar::Script_Runic | 31 | |
QChar::Script_Samaritan | 82 | |
QChar::Script_Saurashtra | 71 | |
QChar::Script_Sharada | 100 | |
QChar::Script_Shavian | 51 | |
QChar::Script_Siddham | 122 | Since Qt 5.5 |
QChar::Script_SignWriting | 131 | Since Qt 5.6 |
QChar::Script_Sinhala | 20 | |
QChar::Script_Sogdian | 148 | Since Qt 5.15 |
QChar::Script_SoraSompeng | 101 | |
QChar::Script_Soyombo | 140 | Since Qt 5.11 |
QChar::Script_Sundanese | 67 | |
QChar::Script_SylotiNagri | 59 | |
QChar::Script_Syriac | 9 | |
QChar::Script_Tagalog | 42 | |
QChar::Script_Tagbanwa | 45 | |
QChar::Script_TaiLe | 48 | |
QChar::Script_TaiTham | 78 | |
QChar::Script_TaiViet | 79 | |
QChar::Script_Takri | 102 | |
QChar::Script_Tamil | 16 | |
QChar::Script_Tangut | 137 | Since Qt 5.11 |
QChar::Script_Telugu | 17 | |
QChar::Script_Thaana | 10 | |
QChar::Script_Thai | 21 | |
QChar::Script_Tibetan | 23 | |
QChar::Script_Tifinagh | 58 | |
QChar::Script_Tirhuta | 124 | Since Qt 5.5 |
QChar::Script_Ugaritic | 50 | |
QChar::Script_Vai | 70 | |
QChar::Script_Wancho | 152 | Since Qt 5.15 |
QChar::Script_WarangCiti | 125 | Since Qt 5.5 |
QChar::Script_Yezidi | 156 | Since Qt 5.15 |
QChar::Script_Yi | 38 | |
QChar::Script_ZanabazarSquare | 141 | Since Qt 5.11 |
This enum was introduced or modified in Qt 5.1.
See also script().
enum QChar::SpecialCharacter
| Constant | Value | Description |
|---|---|---|
QChar::Null | 0x0000 | A QChar with this value isNull(). |
QChar::Tabulation | 0x0009 | Character tabulation. |
QChar::LineFeed | 0x000a | |
QChar::FormFeed | 0x000c | |
QChar::CarriageReturn | 0x000d | |
QChar::Space | 0x0020 | |
QChar::Nbsp | 0x00a0 | Non-breaking space. |
QChar::SoftHyphen | 0x00ad | |
QChar::ReplacementCharacter | 0xfffd | The character shown when a font has no glyph for a certain codepoint. A special question mark character is often used. Codecs use this codepoint when input data cannot be represented in Unicode. |
QChar::ObjectReplacementCharacter | 0xfffc | Used to represent an object such as an image when such objects cannot be presented. |
QChar::ByteOrderMark | 0xfeff | |
QChar::ByteOrderSwapped | 0xfffe | |
QChar::ParagraphSeparator | 0x2029 | |
QChar::LineSeparator | 0x2028 | |
QChar::LastValidCodePoint | 0x10ffff |
enum QChar::UnicodeVersion
Specifies which version of the Unicode standard introduced a certain character.
| Constant | Value | Description |
|---|---|---|
QChar::Unicode_1_1 | 1 | Version 1.1 |
QChar::Unicode_2_0 | 2 | Version 2.0 |
QChar::Unicode_2_1_2 | 3 | Version 2.1.2 |
QChar::Unicode_3_0 | 4 | Version 3.0 |
QChar::Unicode_3_1 | 5 | Version 3.1 |
QChar::Unicode_3_2 | 6 | Version 3.2 |
QChar::Unicode_4_0 | 7 | Version 4.0 |
QChar::Unicode_4_1 | 8 | Version 4.1 |
QChar::Unicode_5_0 | 9 | Version 5.0 |
QChar::Unicode_5_1 | 10 | Version 5.1 |
QChar::Unicode_5_2 | 11 | Version 5.2 |
QChar::Unicode_6_0 | 12 | Version 6.0 |
QChar::Unicode_6_1 | 13 | Version 6.1 |
QChar::Unicode_6_2 | 14 | Version 6.2 |
QChar::Unicode_6_3 | 15 | Version 6.3 Since Qt 5.3 |
QChar::Unicode_7_0 | 16 | Version 7.0 Since Qt 5.5 |
QChar::Unicode_8_0 | 17 | Version 8.0 Since Qt 5.6 |
QChar::Unicode_9_0 | 18 | Version 9.0 Since Qt 5.11 |
QChar::Unicode_10_0 | 19 | Version 10.0 Since Qt 5.11 |
QChar::Unicode_11_0 | 20 | Version 11.0 Since Qt 5.15 |
QChar::Unicode_12_0 | 21 | Version 12.0 Since Qt 5.15 |
QChar::Unicode_12_1 | 22 | Version 12.1 Since Qt 5.15 |
QChar::Unicode_13_0 | 23 | Version 13.0 Since Qt 5.15 |
QChar::Unicode_Unassigned | 0 | The value is not assigned to any character in version 8.0 of Unicode. |
See also unicodeVersion() and currentUnicodeVersion().