what is the format specifier for dword c++

#include <iostream>

int main() {
    unsigned long dwordValue = 4294967295; // Example DWORD value

    std::cout << "DWORD Value: " << dwordValue << std::endl;

    return 0;
}