# {ldelim}, {rdelim} `{ldelim}` and `{rdelim}` are used for [escaping](../language-basic-syntax/language-escaping.md) template delimiters, by default **{** and **}**. You can also use [`{literal}{/literal}`](./language-function-literal.md) to escape blocks of text eg Javascript or CSS. See also the complementary [`{$smarty.ldelim}`](../../programmers/api-variables/variable-left-delimiter.md). ```smarty {* this will print literal delimiters out of the template *} {ldelim}funcname{rdelim} is how functions look in Smarty! ``` The above example will output: ``` {funcname} is how functions look in Smarty! ``` Another example with some Javascript ```smarty ``` will output ```html ``` ```smarty Click here for Server Info ``` See also [`{literal}`](./language-function-literal.md) and [escaping Smarty parsing](../language-basic-syntax/language-escaping.md).