---
title: '|intcomma'
description: adds thousand separators to a number.
date: '2026-08-21'
categories:
  - Filter
  - Number
canonical: https://djangotemplatetagsandfilters.com/filters/intcomma/
doc_link: >-
  https://docs.djangoproject.com/en/6.1/ref/contrib/humanize/#std-templatefilter-intcomma
---

# |intcomma

adds thousand separators to a number.

## Documentation

Converts an integer or float to a string with a separator every three digits, so a number a reader has to count digits in becomes one they can read at a glance.

### Template

```django
{% load humanize %}
<p>{{ downloads|intcomma }} downloads</p>
```

### Result

```django
<p>4,500,000 downloads</p>
```

The separator follows the active locale unless you pass `False`, so a German page gets `4.500.000` without any extra work.
