This was asked for elsewhere today and I was able to whip it up quickly so I thought that I would share. Little BASH script that should work anywhere, just loops through the provided arguments and provides a character count.
#!/bin/bash
for var in "$@"; do
echo "${#var}"
done