ANSI C Quoting in bash is supposed to read strings the same way C(or python with single quotes) would.
printf $'"Hello, World!\\n"'
#expected output (no newline, the slash is escaped)
"Hello, World!\n"
#actual output (one newline)
"Hello, World!
"
But it seems to not be working properly. Is that a bug?