I want to translate a value to hex but the results are missing.
int q = 0006038738;
var w = q.ToString("X");
//result: 5C24D2
//I want that: 005C24D2
How do I incorporate the 0s at the beginning of the value I will convert?