"Find at beginning..." (or end)

Is there a way to find a particular character (in this case, a space) that appears at the beginning of a filename, or at the end? I’d like to find files that have spaces accidentally placed at either point.

This is possible by using wildcards, e.g. w* (starts with w) or *w (ends with w). But unfortunately this does not work for spaces.