Format a variable to display leading zeroes


var qnumber:uint = 000;
 
trace(qnumber); //0

How do I make this three zeroes, not just one zeroe?