# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
**Bold Text**
*Italic Text*
***Bold and Italic Text***
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
1. First item
2. Second item
1. Nested item
2. Nested item
[Text](https://example.com)
[Google](https://www.google.com)

> This is a blockquote.
>> Nested blockquote.
`Inline code`
```javascript
// Multi-line code block
console.log("Hello, world!");
| Name | Age | City |
|---------|------|----------|
| Alice | 25 | New York |
| Bob | 30 | Paris |
| Charlie | 35 | London |
- [x] Task 1 (completed)
- [ ] Task 2 (pending)
- [ ] Task 3 (pending)
\*Escaped asterisk\*
\# Escaped hash
Here is a footnote reference[^1].
[^1]: This is the footnote.
~~Strikethrough text~~
==Highlighted Text==