It marks an escaped character as being a normal character. This is useful if you don't want some characters to be escaped again.
{{ "< '"|raw }}
Result
<
Without using the filter, the output of this expression would be:&lt;
.
Important:
If nested filters are used, the raw filter needs to be the last to work properly.
{{ mysubject_line | required | raw }}