Angular 10 UpperCasePipe Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report In this article, we are going to see what is UpperCasePipe in Angular 10 and how to use it. The UpperCasePipe is used to Transforms all the text to uppercase. Syntax: {{ value | uppercase }} NgModule: Module used by UpperCasePipe is: CommonModule Approach: Create the angular app to be usedThere is no need for any import for the UpperCasePipe to be usedIn app.component.ts define the variables that takes the UpperCasePipe value.In app.component.html use the above syntax with '|' symbol to make UpperCasePipe element.serve the angular app using ng serve to see the output Input value: value: it takes an string value. Example 1: app.component.ts import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { // Key Value object value : string = 'geeksforgeeks'; } app.component.html <b> <div> Uppercase value is : {{value | uppercase}} </div> </b> Output: Example 2: app.component.ts import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { value : string = 'CamelCase String'; } app.component.html <b> <div> CamelCase value is : {{value}} </div> <div> Uppercase value is : {{value | uppercase}} </div> </b> Output: Reference: https://v17.angular.io/api/common/UpperCasePipe Comment More infoAdvertise with us Next Article Angular 10 I18nPluralPipe API T taran910 Follow Improve Article Tags : Web Technologies AngularJS Angular10 Similar Reads Angular10 LowerCasePipe In this article, we are going to see what is LowerCasePipe in Angular 10 and how to use it. The LowerCasePipe is used to Transforms all the text to lowercase. Syntax: {{ value | lowercase }} NgModule: Module used by LowercaseCasePipe is: CommonModule Approach: Create the angular app to be usedThere 1 min read Angular 10 DatePipe API In this article, we are going to see what is DatePipe in Angular 10 and how to use it. DatePipe is used to format a date value according to locale rules. Syntax: {{ value | date }} Approach: Create the angular app that to be used.There is no need for any import for the DatePipe to be used.In app.co 1 min read Angular10 percentPipe In this article, we are going to see what is percentPipe in Angular 10 and how to use it. The percentPipe is used to Transform a number to a percentage string. Syntax: {{ value | percent [ : digitsInfo [ : locale ] ] }} NgModule: Module used by percentPipe is: CommonModule Approach: Create the angul 2 min read Angular10 TitleCasePipe In this article, we are going to see what is TitleCasePipe in Angular 10 and how to use it. TitleCasePipe is used to Transforms all the text to titlecase. Syntax: {{ value | TitleCasePipe }} NgModule: Module used by TitleCasePipe is: CommonModule Approach: Create the angular app to be usedThere is 1 min read Angular 10 I18nPluralPipe API In this article, we are going to see what is I18nPluralPipe in Angular 10 and how to use it. The I18nPluralPipe is a map that takes a string value that pluralizes according to given rules. Syntax: {{ value | i18nPlural : map [ : rule]}} NgModule: Module used by I18nPluralPipe is: CommonModule Approa 2 min read AngularJs uppercase Filter The uppercase Filter in AngularJS is used to change a string to an uppercase string or letters. Syntax: {{ string | uppercase}} Example: This example describes the use of the uppercase Filter in AngularJS. HTML <!DOCTYPE html> <html> <head> <title>uppercase Filter</title 1 min read Like