# Use Checkbox Symbols in DOCX Templates

DOCX templates do not support the PDF checkbox image behavior.

If you use PDF checkbox attributes in DOCX, the output will not render as expected.

Use Unicode checkbox characters instead.

### Use Unicode characters for checked and unchecked values

Replace `true` and `false` with these characters:

* checked: `☑`
* unchecked: `☐`

This works because DOCX outputs text, not PDF checkbox images.

### Merge field example

Use `replaceAll` inside the DOCX merge field.

```plaintext
[{{!OBJECT.Checkbox_Field__c replaceAll="true, ☑,false, ☐"}}]
```

### Related list example

Use `replaceAll` on the related list column.

```plaintext
<column replaceAll="true, ☑,false, ☐">Checkbox_Field__c</column>
```

### Notes

* This approach is for DOCX templates.
* PDF checkbox attributes still apply to PDF templates only.
* The exact appearance depends on the font used in Word.

{% hint style="info" %}
If the checkbox symbols do not display well, switch the Word font to one that supports Unicode checkbox characters clearly.
{% endhint %}

### Related articles

* [Microsoft Word (DOCX)](/sdocs/template-architecture/document-formats/docx-s-docs.md)
* [How to Show Checkboxes on Forms](/sdocs/advanced-template-logic/template-attributes/template-attributes-how-to-guides/how-to-show-checkboxes-on-forms.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.sdocs.com/sdocs/template-architecture/document-formats/docx-s-docs/additional-resources/checkboxes-with-docx.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
