fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main()
  5. {
  6. const std::wstring str = L"hello 😀";
  7. std::wcout << str.size() << L'\n';
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0s 5692KB
stdin
Standard input is empty
stdout
7