Its   - Non Breaking Spaces
return CharMatcher.WHITESPACE.trimFrom((String) s1);
We should trim   as well, ideally...BUT ! there's a huge downside that many folks know and use OpenRefine trim() and have confidence it does not throw away  's.
But in the case of conversions, we should be throwing them away.
We probably just need to add functionality for throwing away  's for toNumber() and perhaps toDate() and a few others ?
But I would not add handling   directly for trim() because of the past expectations of not dealing with  's
-Thad