Revision ba16b11f-147f-43d5-a249-e67e8a1f792c - Code Golf Stack Exchange
# [05AB1E], 3 bytes
vð?
[Try it online!]
v # For each character...
ð? # Output a space without a newline
### Other 3 byte solutions (Thanks [Magic Octopus Urn](https://codegolf.stackexchange.com/users/59376/magic-octopus-urn) for some of these)
v¶? # For each character print a newline (without adding a newline)
võ, # For each character print the empty string with a newline
gð× # Get the length, concatenate that many copies of space
g¶× # Get the length, concatenate that many copies of newline
Sð: # Split, push a space, replace each char in input with a space
ðs∍ # Push ' ', swap, make the string of spaces as long as the input was
[05AB1E]: https://github.com/Adriandmen/05AB1E
[Try it online!]: https://tio.run/nexus/05ab1e#@192eIP9//8eqTk5@ToK4flFOSmKAA "05AB1E – TIO Nexus"