# TOC에 이모지가 표시되지 않습니다

**URL:** https://meta.discourse.org/t/emojis-do-not-show-in-toc/340173
**Category:** Support
**Tags:** disco-toc
**Created:** [12월 3, 2024, 5:16오후 UTC](https://meta.discourse.org/t/emojis-do-not-show-in-toc/340173 "2024-12-03T17:16:09Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![Canapin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/canapin/32/119591_2.png) [@Canapin](https://meta.discourse.org/u/Canapin)
#### Post date: [2월 6, 2026, 2:56오후 UTC](https://meta.discourse.org/t/emojis-do-not-show-in-toc/340173/3 "2026-02-06T14:56:04Z")

</div>

해결 방법이 있습니다. 유니코드 이모지를 사용하고 백틱 ``` 으로 감싸세요.

목차에서는 제목에서 백틱이 제거되지만, 유니코드 이모지는 그대로 유지됩니다.

```plaintext
### Test 1

### `📣` Test 2

### Test 3

```

 ![image](https://global.discourse-cdn.com/meta/original/4X/4/5/1/451967c1688b00fd94016e065ba3c705038f0775.png)

단점으로는 게시글에서 보기에는 약간 어색해 보인다는 점입니다:

 ![image](https://global.discourse-cdn.com/meta/original/4X/1/e/3/1e38561385f331d905d1b97ad8383c26583f6379.png)

시각적으로 완벽한 결과를 원하지만 약간 복잡한 방법을 사용한다면:

```plaintext
### Test 1

### <span data-title-emoji>`🧑‍💻`</span> Test 2

### Test 3

```

다음과 같은 CSS를 사용하면 됩니다.

```scss
span[data-title-emoji] code {
    background: inherit;
}

```

렌더링 결과:

 ![image](https://global.discourse-cdn.com/meta/original/4X/c/1/4/c14732ce3e8d54045c03c0f4374672e4309feb63.png)

ℹ 제목에서 이 용도로 `[wrap]` 은 작동하지 않으므로, 반드시 `<span>` 을 사용해야 합니다.

---

_[View the full topic](https://meta.discourse.org/t/emojis-do-not-show-in-toc/340173)._
