To make text bold on Discord, wrap it in two asterisks on each side: **your text**. Send the message and Discord renders it bold automatically — no settings to change, no Nitro required. The same Markdown syntax works in server channels, DMs, threads, and forums, on desktop and mobile.
The full Discord formatting syntax
Discord uses a subset of Markdown for all text formatting. You type the characters, send the message, and the app renders the result.
| Style | Syntax | Example input |
|---|---|---|
| Bold | **text** | **meeting notes** |
| Italic | *text* or _text_ | *emphasis* |
| Bold italic | ***text*** | ***very important*** |
| Underline | __text__ | __section title__ |
| Strikethrough | ~~text~~ | ~~old price~~ |
| Spoiler | ||text|| | ||plot twist|| |
| Inline code | `text` | `variable_name` |
| Block quote | > text | > cited text |
| Header 1 | # text (space required) | # Announcement |
| Header 2 | ## text | ## Details |
| Header 3 | ### text | ### Notes |
| Subtext | -# text | -# Posted by… |
| Masked link | [label](url) | [Label](url) |
You can stack most styles. __***text***__ produces underlined bold italic.
How to type each format on desktop
On the desktop app and the browser version, you can either type the Markdown manually or use keyboard shortcuts:
- Bold —
Ctrl + B(Windows/Linux) orCmd + B(Mac) - Italic —
Ctrl + I/Cmd + I - Underline —
Ctrl + U/Cmd + U
If you want to preview output before you send, the Discord text formatter at BoldlyType shows a live render as you type.
Formatting on Discord mobile
Markdown formatting works on the Discord mobile app for both Android and iOS. When you select text in the message box, a formatting bar appears above the keyboard. One mobile-specific limitation: syntax highlighting in code blocks does not render on mobile.
Code blocks and syntax highlighting
For inline code, use a single backtick on each side: `npm install`
For a multi-line code block, use three backticks. To enable syntax highlighting, add the language name after the opening backticks: ```python. Discord supports Python, JavaScript, TypeScript, Java, C++, Go, Rust, Bash, JSON, YAML, and around twenty other languages.