The page at http://ref.x86asm.net/coder64.html#xF0 gives various hexadecimal opcodes.
In my Visual studio dissambly, i have
FF E0 jmp rax
I just found pasting 'jmp rax' and assembling in https://defuse.ca/online-x86-assembler.htm#disassembly gives the corresponding hex opcode ( FF E0 in this case).
But is there any manual or documentation showing how can we find out the hex equavalent of jump instructions.( eg. i want to find out equivalent of jmp rbx ) Thanks