Hex symbols in a data attribute
HTML
<div data-foo='First line 
 Second Line'>foo</div>
CSS
[data-foo]:after {
content: attr(data-foo);
background-color: black;
color: white;
white-space: pre;
display: inline-block;
}
<div data-foo='First line 
 Second Line'>foo</div>
[data-foo]:after {
content: attr(data-foo);
background-color: black;
color: white;
white-space: pre;
display: inline-block;
}