# Frequently Asked Questions - [Why does emoji break alignment in a Table or Panel?](#why-does-emoji-break-alignment-in-a-table-or-panel) - [Why does content in square brackets disappear?](#why-does-content-in-square-brackets-disappear) - [python -m rich.spinner shows extra lines](#python--m-rich.spinner-shows-extra-lines) - [Strange colors in console output.](#strange-colors-in-console-output.) ## Why does emoji break alignment in a Table or Panel? Certain emoji take up double space within the terminal. Unfortunately, terminals don't always agree how wide a given character should be. Rich has no way of knowing how wide a character will be on any given terminal. This can break alignment in containers like Table and Panel, where Rich needs to know the width of the content. There are also *multiple codepoints* characters, such as country flags, and emoji modifiers, which produce wildly different results across terminal emulators. Fortunately, most characters will work just fine. But you may have to avoid using the emojis that break alignment. You will get good results if you stick to emoji released on or before version 9 of the Unicode database, ## Why does content in square brackets disappear? Rich will treat text within square brackets as *markup tags*, for instance `"[bold]This is bold[/bold]"`. If you are printing strings with literally square brackets you can either disable markup, or escape your strings. See the docs on [console markup](https://rich.readthedocs.io/en/latest/markup.html) for how to do this. ## python -m rich.spinner shows extra lines The spinner example is know to break on some terminals (Windows in particular). Some terminals don't display emoji with the correct width, which means Rich can't always align them accurately inside a panel. ## Strange colors in console output. Rich will highlight certain patterns in your output such as numbers, strings, and other objects like IP addresses. Occasionally this may also highlight parts of your output you didn't intend. See the [docs on highlighting](https://rich.readthedocs.io/en/latest/highlighting.html) for how to disable highlighting.