Menu
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

Template Filter - upper


Example

Display firstname with all upper case letters:

<h1>{{ firstname|upper }}</h1>
Run Example »

Definition and Usage

The upper filter returns the value in all upper case letters.

See also the lower filter.


Syntax

Template filters are defined by using a pipe | character followed by the name of the filter.

{{ value|upper }}