# `number_format`
New in version 1.5: The `number_format` filter was added in Twig 1.5
The `number_format` filter formats numbers. It is a wrapper around PHP's[number_format](http://php.net/number_format) [http://php.net/number_format] function:
<table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre>1</pre></div></td><td class="code"><div class="highlight"><pre>{{ 200.35|number_format }}
</pre></div></td></tr></table>
You can control the number of decimal places, decimal point, and thousandsseparator using the additional arguments:
<table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre>1</pre></div></td><td class="code"><div class="highlight"><pre>{{ 9800.333|number_format(2, '.', ',') }}
</pre></div></td></tr></table>
If no formatting options are provided then Twig will use the default formattingoptions of:
- 0 decimal places.
- `.` as the decimal point.
- `,` as the thousands separator.
These defaults can be easily changed through the core extension:
<table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre>1
2</pre></div></td><td class="code"><div class="highlight"><pre>$twig = new Twig_Environment($loader);
$twig->getExtension('core')->setNumberFormat(3, '.', ',');
</pre></div></td></tr></table>
The defaults set for `number_format` can be over-ridden upon each call using theadditional parameters.
### Arguments
- `decimal`: The number of decimal points to display
- `decimal_point`: The character(s) to use for the decimal point
- `thousand_sep`: The character(s) to use for the thousands separator
- Twig
- Introduction
- Installation
- Twig for Template Designers
- Twig for Developers
- Extending Twig
- Twig Internals
- Deprecated Features
- Recipes
- Coding Standards
- Tags
- autoescape
- block
- do
- embed
- extends
- filter
- flush
- for
- from
- if
- import
- include
- macro
- sandbox
- set
- spaceless
- use
- verbatim
- Filters
- abs
- batch
- capitalize
- convert_encoding
- date
- date_modify
- default
- escape
- first
- format
- join
- json_encode
- keys
- last
- length
- lower
- merge
- nl2br
- number_format
- raw
- replace
- reverse
- round
- slice
- sort
- split
- striptags
- title
- trim
- upper
- url_encode
- Functions
- attribute
- block
- constant
- cycle
- date
- dump
- include
- max
- min
- parent
- random
- range
- source
- template_from_string
- Tests
- constant
- defined
- divisible by
- empty
- even
- iterable
- null
- odd
- same as