Actually you don't need to use STR Or Convert. Just select 'xxx'+LTRIM(ColumnName) does the job. Possibly, LTRIM uses Convert or STR under the hood.
LTRIM also removes need for providing length and usually default 10 is good enough for integer to string conversion.
SELECT LTRIM(ColumnName) FROM TableName