Printing ascending ASCII, Robbers

Brainfuck, 48 bytes, Adnan

++++[>++++[>++++<-]<-]+++[>++++++++<-]>++[>+.<-]

Pretty straightforward, generating 64 and then 26. It might be a little red herring that

++++[>++++[>++++<-]<-]>>+

is a way to get 65, so you might try to do something like

++++[>++++[>++++<-]<-]>>+[>+++++>++<<-----]>>[<.+>-]

before noticing that it's a dead end.


CJam, 12 characters, Dennis

":0[Aa#":,:^

It's in the tips...


CJam, 8 characters, Martin Büttner

Code (with blanked code):

{`:)$}_~
__:_____

Output:

%*;a|~

Try it online.

I sort of had a feeling about this from the moment I saw it. And I thought I didn't know CJam...