Preceding a number with escape character '\' produces garbage value Ex:
$a = \12;
print $a;
This code gives below output
SCALAR(0x2001ea8)
and the output changes when I again execute the program.
If I take a value(number) from user when the user gives any input starting with zero, I dont want it to interpret as octal number. So I wanted to escape zero if the number starts with zero.