I would like to display the available disk space of a mount in xx% format
...
I want to display only "%60"
The example you gave doesn't quite fit the question since the available disk space in this example would be 40%. In case you wanted just to filter out the Output for the used disk space, you want to go with Eugene S's answer.
In case you wanted to express the available disk space in percent, you could use a modified version of it. Like this:
df /opt/Application/Disk1/ | awk '{print (100 -$5 )}' | tail -1 | sed 's/^/%/g'
Where awk '{print (100 -$5 )}' subtracts the percentage of the used disk space (which is in the 5th column in normal output of df) from 100, which results in the percentage of the available disk space. The trailing sed 's/^/%/g' just adds the symbol % in front of the output. To add % after the output use sed 's/$/%/g' instead.