Post History
Japt, 9 bytes All credit to ETH on this one. 9îQi"9îQi Test it 9î :Repeat the following to length 9 Q : Quotation mark i"9îQi : Prepend "9îQi" And, for th...
#1: Initial revision
# [Japt](https://github.com/ETHproductions/japt), 9 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
[All credit to ETH](https://codegolf.stackexchange.com/a/156362/58974) on this one.
9îQi"9îQi
[Test it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=Oe5RaSI57lFp)
9î :Repeat the following to length 9
Q : Quotation mark
i"9îQi : Prepend "9îQi"
And, for the sake of completeness, the original 10 byte Japt quine, again with [all credit to ETH](https://codegolf.stackexchange.com/a/71932/58974):
"iQ ²"iQ ²
[Test it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=ImlRILIiaVEgsg)
"iQ ²" :Literal string
i :Prepend
Q : Quotation mark
² :Repeat twice
