How to output HTML code in Scala template ?

By default, HTML tags are escaped. To return not escaped HTML content, we need to pass by @Html method:

@Html("

"+variableFromController+"

")