Advertisement
JPeterson

utf.cpp

Oct 14th, 2012
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <windows.h>
  2. using namespace System;
  3. int main() {
  4.     OutputDebugString(L"诶");
  5.     Diagnostics::Debug::WriteLine("诶");
  6.     Console::OutputEncoding = Text::Encoding::UTF8;
  7.     System::Console::WriteLine("诶");
  8.     return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement