DB
std::cout << "\u00C7";
output:
Ç
Size: a a a
DB
std::cout << "\u00C7";
Ç
AS
TS
DB
AS
DB
std::cout << "\u00C7";
Ç
TS
АК
AS
DB
DB
DB
LA
UTF-8 encoded string literal. The type of a u8"..." string literal is const char[N] (until C++20)const char8_t[N] (since C++20), where N is the size of the string in UTF-8 code units including the null terminator.
TS
// а еще можно так создавать переменные
int \u00C7 = 42;
std::cout << \u00C7;
42
BH
DB
// а еще можно так создавать переменные
int \u00C7 = 42;
std::cout << \u00C7;
42
DB
DB
TS
UTF-8 encoded string literal. The type of a u8"..." string literal is const char[N] (until C++20)const char8_t[N] (since C++20), where N is the size of the string in UTF-8 code units including the null terminator.
LA