hex to int c++ code example Example: string hex to int c++ //C++11 std::string s = "0xfffefffe"; unsigned int x = std::stoul(s, nullptr, 16);