That'll work!

Might use a few bytes for those extra 0's

You can put the "Escape codes" in the string, and it won't use the extra bytes.

@ da "abcd\nefgh",0

Code:
\a	Bell (alert) character		07
\b	Backspace character		08
\f	Form feed character		0C
\n	New line character		0A
\r	Carriage return character	0D
\t  	Horizontal tab character	09
\v	Vertical tab character		0B
\\	Backslash			5C
\?	Question mark character		3F
\'	Single quote (apostrophe)	27
\"	Double quote character		22
\0OO	Octal number (zero, Octal digit, Octal digit)	
\xHH	Hexadecimal number
Might even be able to put the "Null terminator" in there too.

@ da "abcd\nefgh\x00"

But I haven't tried that yet.
<br>