Hello World!
That's fine for styling a line of text at a time. For more finely grained styling, Rich renders a special markup which is similar in syntax to [bbcode](https://en.wikipedia.org/wiki/BBCode). Here's an example:
```python
console.print("Where there is a [b]Will[/b] there is a [i]way[/i].")
```
Where there is a Will there is a way.
## Emoji
Rich supports a simple way of inserting emoji in to terminal output, by using the name of the emoji between two colons. Here's an example:
```python
console.print(":smiley: :vampire: :pile_of_poo: :thumbs_up: :raccoon:")
```
😃 🧛 💩 👍 🦝
Please use this feature wisely.