We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f63e7e5 commit f1c74c3Copy full SHA for f1c74c3
1 file changed
README.md
@@ -80,7 +80,7 @@ using namespace std::literals;
80
```
81
## String literal declarations:
82
```c++
83
-// Define Unicode literal 'A©←😂B®✅🥳'':
+// Define Unicode literal 'A©←😂B®✅🥳':
84
auto str_utf8 = u8"\U00000041\U000000a9\U00002190\U0001f602\U00000042\U000000ae\U00002705\U0001f973"sv; // UTF-8 string
85
auto str_utf16_or_utf32 = L"\U00000041\U000000a9\U00002190\U0001f602\U00000042\U000000ae\U00002705\U0001f973"sv; // UTF-16/UTF-32 string
86
auto str_utf16 = u"\U00000041\U000000a9\U00002190\U0001f602\U00000042\U000000ae\U00002705\U0001f973"sv; // UTF-16 string
0 commit comments