Search code examples
githubemojigithub-flavored-markdown

Github Markdown: Find emoji for the flag of Brazil


I am trying to use the Brazilian flag using markdown. But it is not as straightforward as I thought. That is to say writing :pt-BR: like for the American flag (:us:) or the Italian flag (:it:).

I found lots of repositories and lists, but none of them showed the flag I was looking for.

Is it possible to use the Brazilian flag, or get it into my README.md on Github?


Solution

  • You can just use

    <span>&#x1f1e7;&#x1f1f7;</span>
    

    or simply copy and paste the unicode character from http://emojipedia.org/flag-for-brazil/ (or from here: 🇧🇷)

    Demo