Skip to main content
2 of 2
Saved 3 bytes thanks to TessellatingHeckler
AdmBorkBork
  • 43.7k
  • 5
  • 107
  • 288

PowerShell, 45 42 bytes

65..$args[0]|%{" "*$i+++"$([char]$_) "*$i} 

Try it online!

Takes input as a literal char, then loops up through the capitals to that point, each iteration prepending the appropriate number of spaces and then the char\space hybrid.

Saved 3 bytes thanks to TessellatingHeckler.

AdmBorkBork
  • 43.7k
  • 5
  • 107
  • 288