You can run this from the command line within a git repo.
xxxxxxxxxx
git diff $(echo "my first string" | git hash-object -w --stdin) $(echo "my second string" | git hash-object -w --stdin) --word-diff
And simple alternative if you don't need git style diff is:
xxxxxxxxxx
diff <(echo "my first string" ) <(echo "my second string")