We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Simple RLE with magic numbers sha3('') and sha3('\x80'):
let magic = '\xfe'
Alternatives: '\xff', '\x00ff'
'\x00' * n where n >= 2, n <= 254 -> magic.chr(n - 2) sha3('') -> magic.'\xfd' sha3('\x80') -> magic.'\xfe' magic -> magic.'\xff'