Built-in Pipes

https://angular.dev/guide/templates/pipes#built-in-pipes

Angular includes a set of built-in pipes in the @angular/common package:

NameDescription
AsyncPipeRead the value from a Promiseor an RxJS Observable.
CurrencyPipeTransforms a number to a currency string, formatted according to locale rules.
DatePipeFormats a Date value according to locale rules.
DecimalPipeTransforms a number into a string with a decimal point, formatted according to locale rules.
I18nPluralPipeMaps a value to a string that pluralizes the value according to locale rules.
I18nSelectPipeMaps a key to a custom selector that returns a desired value.
JsonPipeTransforms an object to a string representation via JSON.stringify, intended for debugging.
KeyValuePipeTransforms Object or Map into an array of key value pairs.
LowerCasePipeTransforms text to all lower case.
PercentPipeTransforms a number to a percentage string, formatted according to locale rules.
SlicePipeCreates a new Array or String containing a subset (slice) of the elements.
TitleCasePipeTransforms text to title case.
UpperCasePipeTransforms text to all upper case.