Find The Rank Of A Word
Python 3, 71 bytes
lambda s:sum(t<=(*s,)for t in{*permutations(s)})
from itertools import*
Try it online!
05AB1E, 5 bytes
ϐsk>
Try it online! or as a Test suite
Explanation
œ # get permutations of input
ê # sort and remove duplicates
s # swap input to top of stack
k # get index of input in the list
> # increment
Gaia, 4 bytes
fuȯI
Try it online!