Check out man page for 'cut'
I don't have a unix box here so working from memory....
set the percent symbol as the delimiter
#df -k|grep notes|awk '{printf "%s\n",$5} | cut -d'%' -f1
alternatively if you know the number will always be 2 characters long.
#df -k|grep notes|awk '{printf "%s\n",$5} | cut -c1-2
hope this helps