fork download
  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. int main() {
  5. int c = '\x0010FFFF';
  6. int d = '\U0010FFFF';
  7. std::cout << std::hex << (unsigned)c << ' ' << d << '\n';
  8. }
  9.  
Success #stdin #stdout 0s 2884KB
stdin
Standard input is empty
stdout
ffffffff f48fbfbf