Type the kill -l command on your shell
you will found that at 9th number [ 9) SIGKILL ], so one can use
either kill -9 or kill -SIGKILL
SIGKILL is sure kill signal, It can not be dis-positioned, ignore or handle.
It always work with its default behaviour, which is to kill the process.