You can, but not with a single SELECT statement.
A relatively easy way to do it would be using a SQLCLR stored procedure that will make the query, manipulate the resultset in a .NET language like C# and return it as any other resultset.
You also could do some serious TSQL-fu in a traditional stored proc that will loop through your data and store every characters in a memory table that will thereafter be returned as the resultset.
If you ask if it can be done in a single SELECT statement without using functions or procedures of any kind, then the answer is: it's not possible. And as juergen mentions in the comments above, it shouldn't be the job of the server to manipulate data in such a way.