Skip to main content

Help

Because sometimes I forget how to drive the software I'm running.


Todoโ€‹

  • Make all links absolute. ( e.g. /docs/sass/ai ) While training the documents with OpenAI, I noticed that some of the link references were not absolute.
  • Create Github Actions to rebuild a Supabase index of the documents on every commit for the AI Assistant to use.

Logโ€‹

Reposโ€‹

Docusaurusโ€‹

https://docusaurus.io/docs

npm install
npm run start
npm run build
npm run serve

24/01/28 - upgrades ( 3.0.1 ๐Ÿ‘‰๐Ÿผ 3.1.1 ) no overides. didn't have to reswizzle. Watch the letter casing, anchors, and relative URLs because the broken link checker has gotten more strict.

note

Watch the letter casing, anchors, and relative URLs because the broken link checker has gotten more strict.

david@ovid๐Ÿ› :~/sites/daw_til(mainโšก) ยป npm outdated
david@ovid๐Ÿ› :~/sites/daw_til(mainโšก) ยป npm list
daw-til-2@0.0.3 /Users/david/Sites/daw_til
โ”œโ”€โ”€ @docusaurus/core@3.1.1
โ”œโ”€โ”€ @docusaurus/plugin-content-blog@3.1.1
โ”œโ”€โ”€ @docusaurus/preset-classic@3.1.1
โ”œโ”€โ”€ @docusaurus/theme-mermaid@3.1.1
โ”œโ”€โ”€ @mdx-js/mdx@3.0.0
โ”œโ”€โ”€ @mdx-js/react@3.0.0
โ”œโ”€โ”€ clsx@2.1.0
โ”œโ”€โ”€ docusaurus-lunr-search@3.3.2
โ”œโ”€โ”€ docusaurus-plugin-matomo@0.0.8
โ”œโ”€โ”€ markprompt@0.1.7
โ”œโ”€โ”€ plugin-image-zoom@1.1.0 (git+ssh://git@github.com/flexanalytics/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de)
โ”œโ”€โ”€ react-dom@18.2.0
โ”œโ”€โ”€ react-player@2.14.1
โ””โ”€โ”€ react@18.2.0

23/12/12 - ๐Ÿ”ฅneeded a way to preface my posts and wanted to change the default width so I swizzle'd the BlogListPage and BlogLayout to widen it with col--9.

npm run swizzle @docusaurus/theme-classic BlogLayout -- --eject
npm run swizzle @docusaurus/theme-classic BlogListPage -- --eject

line 15 of BlogLayout/index.js

  <main
className={clsx('col', {
//'col--7': hasSidebar,
'col--9': hasSidebar,
'col--9 col--offset-1': !hasSidebar,
})}
...
</main>

line 33 of BlogListPage/index.js

    <BlogLayout sidebar={sidebar}>
<h1>Posts</h1>
<p>...</p>
<hr/>
<br/>
<BlogPostItems items={items} />
<BlogListPaginator metadata={metadata} />
</BlogLayout>

23/11/27 - noticed my Lunr search was kicking JavaScript errors because I had swizzle'd it in a previous version and needed to eject it before the build. ( see github repo comment )

david@ovid๐Ÿ› :~/sites/daw_til(mainโ—‹) ยป npm run swizzle docusaurus-lunr-search SearchBar -- --eject

> daw-til-2@0.0.3 swizzle
> docusaurus swizzle docusaurus-lunr-search SearchBar --eject

[WARNING]
Swizzle action eject is unsafe to perform on SearchBar.
It is more likely to be affected by breaking changes in the future
If you want to swizzle it, use the `--danger` flag, or confirm that you understand the risks.
โœ” Do you really want to swizzle this unsafe internal component? โ€บ YES: I know what I am doing!
[SUCCESS]
Ejected SearchBar from docusaurus-lunr-search to
- "daw_til/src/theme/SearchBar/DocSearch.js"
- "daw_til/src/theme/SearchBar/HighlightSearchResults.jsx"
- "daw_til/src/theme/SearchBar/algolia.css"
- "daw_til/src/theme/SearchBar/index.jsx"
- "daw_til/src/theme/SearchBar/lunar-search.js"
- "daw_til/src/theme/SearchBar/styles.css"
- "daw_til/src/theme/SearchBar/templates.js"
- "daw_til/src/theme/SearchBar/utils.js"

Also noticed that since it now uses the default Algolia search elements which includes dark mode, I had to change the styling on it in /src/css/custom.css.

[data-theme='dark'] .ds-dropdown-menu {
--ifm-background-color: #383a42;
border-color: #535763;
}

v3.0.0โ€‹

23/11/12 - Docusaurus updated 2.4.3 ๐Ÿ‘‰๐Ÿผ 3.0.0 and React 17.0.2 ๐Ÿ‘‰๐Ÿผ 18.2.0

david@ovid๐Ÿ› :~/sites/daw_til(mainโ—‹) ยป npm outdated 
Package Current Wanted Latest Location Depended by
@docusaurus/core 2.4.3 3.0.0 3.0.0 node_modules/@docusaurus/core daw_til
@docusaurus/plugin-content-blog 2.4.3 3.0.0 3.0.0 node_modules/@docusaurus/plugin-content-blog daw_til
@docusaurus/preset-classic 2.4.3 3.0.0 3.0.0 node_modules/@docusaurus/preset-classic daw_til
@docusaurus/theme-mermaid 2.4.3 3.0.0 3.0.0 node_modules/@docusaurus/theme-mermaid daw_til
@mdx-js/react 1.6.22 1.6.22 3.0.0 node_modules/@mdx-js/react daw_til
clsx 1.2.1 1.2.1 2.0.0 node_modules/clsx daw_til
docusaurus-lunr-search 3.0.0 3.3.0 3.3.0 node_modules/docusaurus-lunr-search daw_til
react 17.0.2 17.0.2 18.2.0 node_modules/react daw_til
react-dom 17.0.2 17.0.2 18.2.0 node_modules/react-dom daw_til
danger

Docusaurus v3 now requires React 18 and Typescript 5

This introduced a bunch of breaking errors in the markdown formatting via the MDX formatting that are documented at:

Went in and cleaned up the markdown formatting - mostly the tags on links and indented code highlighting formatting.The build process was also failing due to some errors defining text wrapped in {} ๐Ÿ‘‡๐Ÿผ

Error: Failed to compile due to Webpack errors.
Error: Docusaurus server-side rendering could not render static page with path /docs/editors/git because of error: stash_number is not defined
Error: Docusaurus server-side rendering could not render static page with path /docs/lang/Rust because of error: url is not defined
Error: Docusaurus server-side rendering could not render static page with path /docs/shell/zsh because of error: bz2 is not defined
Error: Docusaurus server-side rendering could not render static page with path /lists/tweets_follow because of error: SoftwareHardwareDeveloperDesignerMakerInventor is not defined
at /Users/david/Sites/daw_til/node_modules/@docusaurus/core/lib/webpack/utils.js:207:24
at /Users/david/Sites/daw_til/node_modules/webpack/lib/MultiCompiler.js:554:14
at processQueueWorker (/Users/david/Sites/daw_til/node_modules/webpack/lib/MultiCompiler.js:491:6)
at process.processTicksAndRejections (node:internal/process/task_queues:77:11)
}

[INFO] Docusaurus version: 3.0.0
Node version: v18.12.1
david@ovid๐Ÿ› :~/sites/daw_til(mainโšก) ยป npm list     
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โ”œโ”€โ”€ @docusaurus/core@3.0.0
โ”œโ”€โ”€ @docusaurus/plugin-content-blog@3.0.0
โ”œโ”€โ”€ @docusaurus/preset-classic@3.0.0
โ”œโ”€โ”€ @docusaurus/theme-mermaid@3.0.0
โ”œโ”€โ”€ @mdx-js/mdx@3.0.0
โ”œโ”€โ”€ @mdx-js/react@3.0.0
โ”œโ”€โ”€ clsx@2.0.0
โ”œโ”€โ”€ docusaurus-lunr-search@3.3.0
โ”œโ”€โ”€ docusaurus-plugin-matomo@0.0.6
โ”œโ”€โ”€ markprompt@0.1.7
โ”œโ”€โ”€ plugin-image-zoom@1.1.0 (git+ssh://git@github.com/flexanalytics/plugin-image-zoom.git#8e1b866c79ed6d42cefc4c52f851f1dfd1d0c7de)
โ”œโ”€โ”€ react-dom@18.2.0
โ”œโ”€โ”€ react-player@2.13.0
โ””โ”€โ”€ react@18.2.0

23/09/23 - docusaurus updated - 2.4.1 ๐Ÿ‘‰๐Ÿผ 2.4.3 -> left react at 17 for now, but updated the react player to 2.13.

david@ovid๐Ÿ› :~/sites/daw_til(mainโšก) ยป npm list     
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โ”œโ”€โ”€ @docusaurus/core@2.4.3
โ”œโ”€โ”€ @docusaurus/plugin-content-blog@2.4.3
โ”œโ”€โ”€ @docusaurus/preset-classic@2.4.3
โ”œโ”€โ”€ @docusaurus/theme-mermaid@2.4.3
โ”œโ”€โ”€ @mdx-js/react@1.6.22
โ”œโ”€โ”€ clsx@1.2.1
โ”œโ”€โ”€ docusaurus-lunr-search@3.0.0
โ”œโ”€โ”€ docusaurus-plugin-matomo@0.0.6
โ”œโ”€โ”€ markprompt@0.1.7
โ”œโ”€โ”€ plugin-image-zoom@1.1.0
โ”œโ”€โ”€ react-dom@17.0.2
โ”œโ”€โ”€ react-player@2.13.0
โ””โ”€โ”€ react@17.0.2

david@ovid๐Ÿ› :~/sites/daw_til(mainโšก) ยป npm outdated
Package Current Wanted Latest Location Depended by
@mdx-js/react 1.6.22 1.6.22 2.3.0 node_modules/@mdx-js/react daw_til
clsx 1.2.1 1.2.1 2.0.0 node_modules/clsx daw_til
react 17.0.2 17.0.2 18.2.0 node_modules/react daw_til
react-dom 17.0.2 17.0.2 18.2.0 node_modules/react-dom daw_til

23/08/20 - added an image zoom plugin from https://github.com/flexanalytics/plugin-image-zoom because I didn't like linking to the images or having them constrained between the sidebars.

23/08/18 - updated notes structure to include some personal documents like /documents/family/mom/mom.md which is actually a directory outside of the site build on my computer. I ignore them in the builds and repos. The reason for this is that the more I use machine learning against my own documents, the more the information becomes valuable in vector searches. Because of that, I'm rethinking the way I even organize documents on my computer. For instance this doc when I'm talking to my mom on the phone about whatever, I can reference references I've previously made.

23/05/24 - docusaurus updated - 2.4.0 ๐Ÿ‘‰๐Ÿผ 2.4.1

david@ovid๐Ÿ› :~/sites/daw_til(mainโšก) ยป npm list     
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โ”œโ”€โ”€ @docusaurus/core@2.4.1
โ”œโ”€โ”€ @docusaurus/plugin-content-blog@2.4.1
โ”œโ”€โ”€ @docusaurus/preset-classic@2.4.1
โ”œโ”€โ”€ @docusaurus/theme-mermaid@2.4.1
โ”œโ”€โ”€ @mdx-js/react@1.6.22
โ”œโ”€โ”€ clsx@1.2.1
โ”œโ”€โ”€ docusaurus-lunr-search@2.3.2
โ”œโ”€โ”€ docusaurus-plugin-matomo@0.0.6
โ”œโ”€โ”€ markprompt@0.1.7
โ”œโ”€โ”€ react-dom@17.0.2
โ”œโ”€โ”€ react-player@2.12.0
โ””โ”€โ”€ react@17.0.2

23/05/09

  • added react-player
  • added markprompt
david@ovid๐Ÿ› :~/sites/daw_til(mainโšก) ยป npm list     
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โ”œโ”€โ”€ @docusaurus/core@2.4.0
โ”œโ”€โ”€ @docusaurus/plugin-content-blog@2.4.0
โ”œโ”€โ”€ @docusaurus/preset-classic@2.4.0
โ”œโ”€โ”€ @docusaurus/theme-mermaid@2.4.0
โ”œโ”€โ”€ @mdx-js/react@1.6.22
โ”œโ”€โ”€ clsx@1.2.1
โ”œโ”€โ”€ docusaurus-lunr-search@2.3.2
โ”œโ”€โ”€ docusaurus-plugin-matomo@0.0.6
โ”œโ”€โ”€ markprompt@0.1.7
โ”œโ”€โ”€ react-dom@17.0.2
โ”œโ”€โ”€ react-player@2.12.0
โ””โ”€โ”€ react@17.0.2

23/03/24

  • npm up doc/core 2.3.1 -> 2.4.0
# still have issues with mdx-js/react@latest - holding it in place
david@ovid๐Ÿ› :~/sites/daw_til(mainโšก) ยป npm list
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โ”œโ”€โ”€ @docusaurus/core@2.4.0
โ”œโ”€โ”€ @docusaurus/plugin-content-blog@2.4.0
โ”œโ”€โ”€ @docusaurus/preset-classic@2.4.0
โ”œโ”€โ”€ @docusaurus/theme-mermaid@2.4.0
โ”œโ”€โ”€ @mdx-js/react@1.6.22
โ”œโ”€โ”€ clsx@1.2.1
โ”œโ”€โ”€ docusaurus-lunr-search@2.3.2
โ”œโ”€โ”€ docusaurus-plugin-matomo@0.0.6
โ”œโ”€โ”€ react-dom@17.0.2
โ””โ”€โ”€ react@17.0.2

22/01/31

  • upgraded to docusaurus v2.3.0
david@ovid๐Ÿ› :~/sites/daw_til(masterโšก) ยป npm list     
daw-til-2@0.0.1 /Users/david/Sites/daw_til
โ”œโ”€โ”€ @docusaurus/core@2.3.0
โ”œโ”€โ”€ @docusaurus/plugin-content-blog@2.3.0
โ”œโ”€โ”€ @docusaurus/preset-classic@2.3.0
โ”œโ”€โ”€ @docusaurus/theme-mermaid@2.3.0
โ”œโ”€โ”€ @mdx-js/react@1.6.22
โ”œโ”€โ”€ clsx@1.2.1
โ”œโ”€โ”€ docusaurus-lunr-search@2.3.2
โ”œโ”€โ”€ docusaurus-plugin-matomo@0.0.6
โ”œโ”€โ”€ react-dom@17.0.2
โ””โ”€โ”€ react@17.0.2

22/11/13

  • added a Reader page
  • move branch master -> main for Git
  • addped mermaid and created overview graph
  • upgraded to v.2.2.0
david@ovid๐Ÿ› :~/sites/daw_til(masterโšก) ยป npm outdated                                          127 โ†ต
Package Current Wanted Latest Location Depended by
@docusaurus/core 2.0.0-beta.15 2.2.0 2.2.0 node_modules/@docusaurus/core daw_til
@docusaurus/preset-classic 2.0.0-beta.15 2.2.0 2.2.0 node_modules/@docusaurus/preset-classic daw_til
@mdx-js/react 1.6.22 1.6.22 2.1.5 node_modules/@mdx-js/react daw_til
clsx 1.1.1 1.2.1 1.2.1 node_modules/clsx daw_til
docusaurus-lunr-search 2.1.15 2.3.1 2.3.1 node_modules/docusaurus-lunr-search daw_til
react 17.0.2 17.0.2 18.2.0 node_modules/react daw_til
react-dom 17.0.2 17.0.2 18.2.0 node_modules/react-dom daw_til
  • colorMode.switchConfig is deprecated #6771 rm'd -
      switchConfig: {
darkIcon: '\u2800',
darkIconStyle: {
marginLeft: '1px',
},
lightIcon: '\u2800',
lightIconStyle: {
marginLeft: '1px',
},
},
src/theme/SearchBar/lunar-search.js
29 - url: this.baseUrl !== '/' || doc.url.charAt(0) !== '/' ? this.baseUrl + doc.url : doc.url,
+ url: doc.url,

12/04/2021

  • added in Notes for non-technical docs
  • upgraded to v.2.0.0-beta.13

11/10/2021

  • Updated the Docusaurus & NPM packages.
  • Combined my old awesome-david repo into it for simplicity and rebuilt.

03/18/2021

Migrated this version from Gitbook because it wasn't playing nicely with Node.js v14 and it had a couple security vulnerabilities in the packages. Gitbook stop supporting the open source version likely for business reasons, so I migrated it all to https://docsify.js.org/... didn't do docsify because I can't generate static HTML which is what my DOM parser depends on to pull content elsewhere. Decided on using https://docusaurus.io/ instead. It required a bit of cleanup in the Markdown to do so. See: https://davidawindham.com/til/help

05/02/2017

While working on another project yesterday afternoon, I ran into set of documentation (https://docs.feathersjs.com/) that I spent a lot of time reading and will likely forget about sometime soon after I abandon using the library in other projects. Of course I stuffed a bookmark of the documentation into my quasi organized set of chrome bookmarks based on each project, but the fact that the documentation was hosted using Gitbook, reminded me of a practice I've seen others do.

03/18/21 - Gotta Migrate my TIL. Just noticed that gitbook doesn't play nicely with Node.js v14.

david@macs๐Ÿถ:~/sites/daw_til(masterโšก) ยป gitbook serve --no-live
/Users/david/.nvm/versions/node/v14.15.4/lib/node_modules/gitbook-cli/node_modules/npm/node_modules/graceful-fs/polyfills.js:287
if (cb) cb.apply(this, arguments)
TypeError: cb.apply is not a function
at /Users/david/.nvm/versions/node/v14.15.4/lib/node_modules/gitbook-cli/node_modules/npm/node_modules/graceful-fs/polyfills.js:287:18
at FSReqCallback.oncomplete (fs.js:184:5)
david@macs๐Ÿถ:~/sites/daw_til(masterโšก) ยป node -v
v14.15.4
david@macs๐Ÿถ:~/sites/daw_til(masterโšก) ยป nvm ls
v6.10.3
v6.11.2
v7.6.0
v8.4.0
v8.11.4
v8.12.0
v10.16.3
-> v14.15.4
system
default -> 14 (-> v14.15.4)
unstable -> N/A (default)
node -> stable (-> v14.15.4) (default)
stable -> 14.15 (-> v14.15.4) (default)
iojs -> iojs- (-> system) (default)
lts/* -> lts/fermium (-> v14.15.4)
lts/argon -> v4.9.1 (-> N/A)
lts/boron -> v6.17.1 (-> N/A)
lts/carbon -> v8.17.0 (-> N/A)
lts/dubnium -> v10.23.2 (-> N/A)
lts/erbium -> v12.20.1 (-> N/A)
lts/fermium -> v14.15.4
david@macs๐Ÿถ:~/sites/daw_til(masterโšก) ยป nvm use 10.16.3
Now using node v10.16.3 (npm v7.5.4)
david@macs๐Ÿถ:~/sites/daw_til(masterโšก) ยป gitbook serve --no-live
info: 18 plugins are installed...

3/14/20 Ran into a couple errors with Gitbook and noticed that they are deprecating the open source version. Will need to migrate Gitbook to Docsify:

migrateโ€‹

# install docsify globally
npm i docsify-cli -g
# copy existing repo
mv til/ til_old
cp /til_old /til
docsify init til/
# Rename summary.md to _sidebar.md
mv summary.md _sidebar.md
#add loadSidebar: true to window.$docsify in index.html
docsify serve

migrate notes:โ€‹

{
"name": "windhamdavid_til",
"version": "1.0.0",
"description": "my til gitbook",
"dependencies": {
"gitbook": "^3.2.3",
"gitbook-plugin-ace": "^0.3.2",
"gitbook-plugin-advanced-emoji": "^0.2.2",
"gitbook-plugin-anchors": "^0.7.1",
"gitbook-plugin-github-embed": "^1.3.1",
"gitbook-plugin-piwik": "^0.2.1",
"gitbook-plugin-search-plus": "^1.0.4-alpha-3",
"gitbook-plugin-toggle-chapters": "0.0.3",
"gitbook-plugin-toggle-headers": "^0.1.0",
"gitbook-plugin-video": "0.0.3"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/windhamdavid/til.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "David A. Windham",
"private": true,
"license": "UNLICENSED",
"homepage": "https://davidawindham.com"
}
david@macs:~/sites/til(masterโšก) ยป npm outdated                                                          130 โ†ต
Package Current Wanted Latest Location
gitbook-plugin-search-plus 1.0.3 1.0.4-alpha-3 1.0.4-alpha-3 windhamdavid_til
gitbook 3.2.2 3.2.3 2.6.9 windhamdavid_til
gitbook-plugin-github-embed 1.1.2 1.3.1 1.3.1 windhamdavid_til


Admonitionsโ€‹

note

Some content with Markdown syntax. Check this api.

Mermaidโ€‹


Creating Docsโ€‹

Create a Markdown file in /docs/doc.md
Add to sidebars.js

Meta Data using Front Matterโ€‹

---
id: my-doc
title: My document title
description: My document description
sidebar_label: My doc
---

Markdown content

url paths or relative file paths

[Create a page](/create-a-page)
[Create a page](./create-a-page.md)

Gitbook:โ€‹

https://github.com/GitbookIO/gitbook
https://github.com/GitbookIO/gitbook/blob/master/docs/setup.md
https://toolchain.gitbook.com/

npm install -g gitbook-cli

cd sites/til
gitbook help
gitbook build .
gitbook serve .
http://localhost:4000/

run for production without livereload.js

gitbook serve --no-live

Markdown:โ€‹

Markdown Cheatsheet from Github Markdown Cheatsheet

Headersโ€‹

# h1
## h2
### h3
#### h4
##### h5
###### h6
Header 1
========
Header 2
--------

Emphasisโ€‹

*italic*
_italic_
**bold**
__bold__
***bold italic***
___bold italic___
~~strikethrough~~
`code`

Listsโ€‹

* Item 1
* Item 2
- Item 1
- Item 2
- [ ] Checkbox off
- [x] Checkbox on
1. Item 1
2. Item 2
[link](http://google.com)
[link][google]
[google]: http://google.com
<http://google.com>

Imagesโ€‹

![Image alt text](/path/to/img.jpg)
![Image alt text](/path/to/img.jpg "title")
![Image alt text][img]
[img]: http://foo.com/img.jpg

Codeโ€‹

    4 space indent
makes a code block
```
code fences
```
```js
codeFences.withLanguage()
```

Blockquotesโ€‹

> This is
> a blockquote
>
> > Nested
> > Blockquote

Horizontal lineโ€‹

----
****

Tablesโ€‹

| Column 1 Heading | Column 2 Heading |
| ---------------- | ---------------- |
| Some content | Other content |
Column 1 Heading | Column 2 Heading
--- | ---
Some content | Other content

Code:โ€‹

Piwik Pluginโ€‹

https://github.com/emmanuel-keller/gitbook-plugin-piwik

use the language identifier after the back ticks for the code block in markdown

<style>
* {
margin: 0;
padding: 0;
}
</style>
<script>
$(document).ready(function(){
var something = 5;
if (something == 5){
console.log('woohoo');
}
});
</script>
<section>
<p>Hello world</p>
</section>

Githubโ€‹

https://github.com/visallo/gitbook-plugin-github-embed

Toggle Chaptersโ€‹

https://github.com/poojan/gitbook-plugin-toggle-chapters
https://github.com/hypertrack/gitbook-plugin-toggle-headers

Media:โ€‹

Images:โ€‹

![tabs](./img/til_tabs.png)

Add video from Youtube or Vimeoโ€‹

{% video %}https://www.domain.com/video_url{% endvideo %}

Add video from source fileโ€‹

//add url using html5
<video width="720" height="480" controls src="/media/wha.mp4" type="video/mp4"></video>

###HTML adding published date with microformat https://www.w3.org/TR/NOTE-datetime

<time class="updated" datetime="2016-11-30T11:16:16+00:00" itemprop="datePublished">11/30/2016</time>

Emojisโ€‹

People

:bowtie: :bowtie:๐Ÿ˜„ :smile:๐Ÿ˜† :laughing:
๐Ÿ˜Š :blush:๐Ÿ˜ƒ :smiley:โ˜บ๏ธ :relaxed:
๐Ÿ˜ :smirk:๐Ÿ˜ :heart_eyes:๐Ÿ˜˜ :kissing_heart:
๐Ÿ˜š :kissing_closed_eyes:๐Ÿ˜ณ :flushed:๐Ÿ˜Œ :relieved:
:satisfied: :satisfied:๐Ÿ˜ :grin:๐Ÿ˜‰ :wink:
๐Ÿ˜œ :stuck_out_tongue_winking_eye:๐Ÿ˜ :stuck_out_tongue_closed_eyes:๐Ÿ˜€ :grinning:
๐Ÿ˜— :kissing:๐Ÿ˜™ :kissing_smiling_eyes:๐Ÿ˜› :stuck_out_tongue:
๐Ÿ˜ด :sleeping:๐Ÿ˜Ÿ :worried:๐Ÿ˜ฆ :frowning:
๐Ÿ˜ง :anguished:๐Ÿ˜ฎ :open_mouth:๐Ÿ˜ฌ :grimacing:
๐Ÿ˜• :confused:๐Ÿ˜ฏ :hushed:๐Ÿ˜‘ :expressionless:
๐Ÿ˜’ :unamused:๐Ÿ˜… :sweat_smile:๐Ÿ˜“ :sweat:
๐Ÿ˜ฅ :disappointed_relieved:๐Ÿ˜ฉ :weary:๐Ÿ˜” :pensive:
๐Ÿ˜ž :disappointed:๐Ÿ˜– :confounded:๐Ÿ˜จ :fearful:
๐Ÿ˜ฐ :cold_sweat:๐Ÿ˜ฃ :persevere:๐Ÿ˜ข :cry:
๐Ÿ˜ญ :sob:๐Ÿ˜‚ :joy:๐Ÿ˜ฒ :astonished:
๐Ÿ˜ฑ :scream::neckbeard: :neckbeard:๐Ÿ˜ซ :tired_face:
๐Ÿ˜  :angry:๐Ÿ˜ก :rage:๐Ÿ˜ค :triumph:
๐Ÿ˜ช :sleepy:๐Ÿ˜‹ :yum:๐Ÿ˜ท :mask:
๐Ÿ˜Ž :sunglasses:๐Ÿ˜ต :dizzy_face:๐Ÿ‘ฟ :imp:
๐Ÿ˜ˆ :smiling_imp:๐Ÿ˜ :neutral_face:๐Ÿ˜ถ :no_mouth:
๐Ÿ˜‡ :innocent:๐Ÿ‘ฝ :alien:๐Ÿ’› :yellow_heart:
๐Ÿ’™ :blue_heart:๐Ÿ’œ :purple_heart:โค๏ธ :heart:
๐Ÿ’š :green_heart:๐Ÿ’” :broken_heart:๐Ÿ’“ :heartbeat:
๐Ÿ’— :heartpulse:๐Ÿ’• :two_hearts:๐Ÿ’ž :revolving_hearts:
๐Ÿ’˜ :cupid:๐Ÿ’– :sparkling_heart:โœจ :sparkles:
โญ :star:๐ŸŒŸ :star2:๐Ÿ’ซ :dizzy:
๐Ÿ’ฅ :boom::collision: :collision:๐Ÿ’ข :anger:
โ— :exclamation:โ“ :question:โ• :grey_exclamation:
โ” :grey_question:๐Ÿ’ค :zzz:๐Ÿ’จ :dash:
๐Ÿ’ฆ :sweat_drops:๐ŸŽถ :notes:๐ŸŽต :musical_note:
๐Ÿ”ฅ :fire::hankey: :hankey:๐Ÿ’ฉ :poop:
:shit: :shit:๐Ÿ‘ :+1::thumbsup: :thumbsup:
๐Ÿ‘Ž :-1::thumbsdown: :thumbsdown:๐Ÿ‘Œ :ok_hand:
:punch: :punch:๐Ÿ‘Š :facepunch:โœŠ :fist:
โœŒ :v:๐Ÿ‘‹ :wave::hand: :hand:
โœ‹ :raised_hand:๐Ÿ‘ :open_hands:โ˜ :point_up:
๐Ÿ‘‡ :point_down:๐Ÿ‘ˆ :point_left:๐Ÿ‘‰ :point_right:
๐Ÿ™Œ :raised_hands:๐Ÿ™ :pray:๐Ÿ‘† :point_up_2:
๐Ÿ‘ :clap:๐Ÿ’ช :muscle:๐Ÿค˜ :metal:
๐Ÿ–• :fu::walking: :walking::runner: :runner:
:running: :running:๐Ÿ‘ซ :couple::family: :family:
๐Ÿ‘ฌ :two_men_holding_hands:๐Ÿ‘ญ :two_women_holding_hands:๐Ÿ’ƒ :dancer:
:dancers: :dancers:๐Ÿ™† :ok_woman::no_good: :no_good:
:information_desk_person: :information_desk_person::raising_hand: :raising_hand:๐Ÿ‘ฐ :bride_with_veil:
:person_with_pouting_face: :person_with_pouting_face::person_frowning: :person_frowning::bow: :bow:
:couplekiss: :couplekiss::couple_with_heart: :couple_with_heart::massage: :massage:
:haircut: :haircut:๐Ÿ’… :nail_care:๐Ÿ‘ฆ :boy:
๐Ÿ‘ง :girl:๐Ÿ‘ฉ :woman:๐Ÿ‘จ :man:
๐Ÿ‘ถ :baby:๐Ÿ‘ต :older_woman:๐Ÿ‘ด :older_man:
:person_with_blond_hair: :person_with_blond_hair:๐Ÿ‘ฒ :man_with_gua_pi_mao:๐Ÿ‘ณ :man_with_turban:
:construction_worker: :construction_worker::cop: :cop:๐Ÿ‘ผ :angel:
๐Ÿ‘ธ :princess:๐Ÿ˜บ :smiley_cat:๐Ÿ˜ธ :smile_cat:
๐Ÿ˜ป :heart_eyes_cat:๐Ÿ˜ฝ :kissing_cat:๐Ÿ˜ผ :smirk_cat:
๐Ÿ™€ :scream_cat:๐Ÿ˜ฟ :crying_cat_face:๐Ÿ˜น :joy_cat:
๐Ÿ˜พ :pouting_cat:๐Ÿ‘น :japanese_ogre:๐Ÿ‘บ :japanese_goblin:
๐Ÿ™ˆ :see_no_evil:๐Ÿ™‰ :hear_no_evil:๐Ÿ™Š :speak_no_evil:
๐Ÿ’‚ :guardsman:๐Ÿ’€ :skull::feet: :feet:
๐Ÿ‘„ :lips:๐Ÿ’‹ :kiss:๐Ÿ’ง :droplet:
๐Ÿ‘‚ :ear:๐Ÿ‘€ :eyes:๐Ÿ‘ƒ :nose:
๐Ÿ‘… :tongue:๐Ÿ’Œ :love_letter:๐Ÿ‘ค :bust_in_silhouette:
๐Ÿ‘ฅ :busts_in_silhouette:๐Ÿ’ฌ :speech_balloon:๐Ÿ’ญ :thought_balloon:
:feelsgood: :feelsgood::finnadie: :finnadie::goberserk: :goberserk:
:godmode: :godmode::hurtrealbad: :hurtrealbad::rage1: :rage1:
:rage2: :rage2::rage3: :rage3::rage4: :rage4:
:suspect: :suspect::trollface: :trollface:

Nature

โ˜€๏ธ :sunny:โ˜” :umbrella:โ˜๏ธ :cloud:
โ„๏ธ :snowflake:โ›„ :snowman:โšก :zap:
๐ŸŒ€ :cyclone:๐ŸŒ :foggy:๐ŸŒŠ :ocean:
๐Ÿฑ :cat:๐Ÿถ :dog:๐Ÿญ :mouse:
๐Ÿน :hamster:๐Ÿฐ :rabbit:๐Ÿบ :wolf:
๐Ÿธ :frog:๐Ÿฏ :tiger:๐Ÿจ :koala:
๐Ÿป :bear:๐Ÿท :pig:๐Ÿฝ :pig_nose:
๐Ÿฎ :cow:๐Ÿ— :boar:๐Ÿต :monkey_face:
๐Ÿ’ :monkey:๐Ÿด :horse:๐ŸŽ :racehorse:
๐Ÿซ :camel:๐Ÿ‘ :sheep:๐Ÿ˜ :elephant:
๐Ÿผ :panda_face:๐Ÿ :snake:๐Ÿฆ :bird:
๐Ÿค :baby_chick:๐Ÿฅ :hatched_chick:๐Ÿฃ :hatching_chick:
๐Ÿ” :chicken:๐Ÿง :penguin:๐Ÿข :turtle:
๐Ÿ› :bug:๐Ÿ :honeybee:๐Ÿœ :ant:
๐Ÿž :beetle:๐ŸŒ :snail:๐Ÿ™ :octopus:
๐Ÿ  :tropical_fish:๐ŸŸ :fish:๐Ÿณ :whale:
๐Ÿ‹ :whale2:๐Ÿฌ :dolphin:๐Ÿ„ :cow2:
๐Ÿ :ram:๐Ÿ€ :rat:๐Ÿƒ :water_buffalo:
๐Ÿ… :tiger2:๐Ÿ‡ :rabbit2:๐Ÿ‰ :dragon:
๐Ÿ :goat:๐Ÿ“ :rooster:๐Ÿ• :dog2:
๐Ÿ– :pig2:๐Ÿ :mouse2:๐Ÿ‚ :ox:
๐Ÿฒ :dragon_face:๐Ÿก :blowfish:๐ŸŠ :crocodile:
๐Ÿช :dromedary_camel:๐Ÿ† :leopard:๐Ÿˆ :cat2:
๐Ÿฉ :poodle:๐Ÿพ :paw_prints:๐Ÿ’ :bouquet:
๐ŸŒธ :cherry_blossom:๐ŸŒท :tulip:๐Ÿ€ :four_leaf_clover:
๐ŸŒน :rose:๐ŸŒป :sunflower:๐ŸŒบ :hibiscus:
๐Ÿ :maple_leaf:๐Ÿƒ :leaves:๐Ÿ‚ :fallen_leaf:
๐ŸŒฟ :herb:๐Ÿ„ :mushroom:๐ŸŒต :cactus:
๐ŸŒด :palm_tree:๐ŸŒฒ :evergreen_tree:๐ŸŒณ :deciduous_tree:
๐ŸŒฐ :chestnut:๐ŸŒฑ :seedling:๐ŸŒผ :blossom:
๐ŸŒพ :ear_of_rice:๐Ÿš :shell:๐ŸŒ :globe_with_meridians:
๐ŸŒž :sun_with_face:๐ŸŒ :full_moon_with_face:๐ŸŒš :new_moon_with_face:
๐ŸŒ‘ :new_moon:๐ŸŒ’ :waxing_crescent_moon:๐ŸŒ“ :first_quarter_moon:
๐ŸŒ” :waxing_gibbous_moon:๐ŸŒ• :full_moon:๐ŸŒ– :waning_gibbous_moon:
๐ŸŒ— :last_quarter_moon:๐ŸŒ˜ :waning_crescent_moon:๐ŸŒœ :last_quarter_moon_with_face:
๐ŸŒ› :first_quarter_moon_with_face::moon: :moon:๐ŸŒ :earth_africa:
๐ŸŒŽ :earth_americas:๐ŸŒ :earth_asia:๐ŸŒ‹ :volcano:
๐ŸŒŒ :milky_way:โ›… :partly_sunny::octocat: :octocat:
:squirrel: :squirrel:

Objects

๐ŸŽ :bamboo:๐Ÿ’ :gift_heart:๐ŸŽŽ :dolls:
๐ŸŽ’ :school_satchel:๐ŸŽ“ :mortar_board:๐ŸŽ :flags:
๐ŸŽ† :fireworks:๐ŸŽ‡ :sparkler:๐ŸŽ :wind_chime:
๐ŸŽ‘ :rice_scene:๐ŸŽƒ :jack_o_lantern:๐Ÿ‘ป :ghost:
๐ŸŽ… :santa:๐ŸŽ„ :christmas_tree:๐ŸŽ :gift:
๐Ÿ”” :bell:๐Ÿ”• :no_bell:๐ŸŽ‹ :tanabata_tree:
๐ŸŽ‰ :tada:๐ŸŽŠ :confetti_ball:๐ŸŽˆ :balloon:
๐Ÿ”ฎ :crystal_ball:๐Ÿ’ฟ :cd:๐Ÿ“€ :dvd:
๐Ÿ’พ :floppy_disk:๐Ÿ“ท :camera:๐Ÿ“น :video_camera:
๐ŸŽฅ :movie_camera:๐Ÿ’ป :computer:๐Ÿ“บ :tv:
๐Ÿ“ฑ :iphone:โ˜Ž๏ธ :phone::telephone: :telephone:
๐Ÿ“ž :telephone_receiver:๐Ÿ“Ÿ :pager:๐Ÿ“  :fax:
๐Ÿ’ฝ :minidisc:๐Ÿ“ผ :vhs:๐Ÿ”‰ :sound:
๐Ÿ”ˆ :speaker:๐Ÿ”‡ :mute:๐Ÿ“ข :loudspeaker:
๐Ÿ“ฃ :mega:โŒ› :hourglass:โณ :hourglass_flowing_sand:
โฐ :alarm_clock:โŒš :watch:๐Ÿ“ป :radio:
๐Ÿ“ก :satellite:โžฟ :loop:๐Ÿ” :mag:
๐Ÿ”Ž :mag_right:๐Ÿ”“ :unlock:๐Ÿ”’ :lock:
๐Ÿ” :lock_with_ink_pen:๐Ÿ” :closed_lock_with_key:๐Ÿ”‘ :key:
๐Ÿ’ก :bulb:๐Ÿ”ฆ :flashlight:๐Ÿ”† :high_brightness:
๐Ÿ”… :low_brightness:๐Ÿ”Œ :electric_plug:๐Ÿ”‹ :battery:
๐Ÿ“ฒ :calling:โœ‰๏ธ :email:๐Ÿ“ซ :mailbox:
๐Ÿ“ฎ :postbox:๐Ÿ›€ :bath:๐Ÿ› :bathtub:
๐Ÿšฟ :shower:๐Ÿšฝ :toilet:๐Ÿ”ง :wrench:
๐Ÿ”ฉ :nut_and_bolt:๐Ÿ”จ :hammer:๐Ÿ’บ :seat:
๐Ÿ’ฐ :moneybag:๐Ÿ’ด :yen:๐Ÿ’ต :dollar:
๐Ÿ’ท :pound:๐Ÿ’ถ :euro:๐Ÿ’ณ :credit_card:
๐Ÿ’ธ :money_with_wings:๐Ÿ“ง :e-mail:๐Ÿ“ฅ :inbox_tray:
๐Ÿ“ค :outbox_tray::envelope: :envelope:๐Ÿ“จ :incoming_envelope:
๐Ÿ“ฏ :postal_horn:๐Ÿ“ช :mailbox_closed:๐Ÿ“ฌ :mailbox_with_mail:
๐Ÿ“ญ :mailbox_with_no_mail:๐Ÿšช :door:๐Ÿšฌ :smoking:
๐Ÿ’ฃ :bomb:๐Ÿ”ซ :gun:๐Ÿ”ช :hocho:
๐Ÿ’Š :pill:๐Ÿ’‰ :syringe:๐Ÿ“„ :page_facing_up:
๐Ÿ“ƒ :page_with_curl:๐Ÿ“‘ :bookmark_tabs:๐Ÿ“Š :bar_chart:
๐Ÿ“ˆ :chart_with_upwards_trend:๐Ÿ“‰ :chart_with_downwards_trend:๐Ÿ“œ :scroll:
๐Ÿ“‹ :clipboard:๐Ÿ“† :calendar:๐Ÿ“… :date:
๐Ÿ“‡ :card_index:๐Ÿ“ :file_folder:๐Ÿ“‚ :open_file_folder:
โœ‚๏ธ :scissors:๐Ÿ“Œ :pushpin:๐Ÿ“Ž :paperclip:
โœ’๏ธ :black_nib:โœ๏ธ :pencil2:๐Ÿ“ :straight_ruler:
๐Ÿ“ :triangular_ruler:๐Ÿ“• :closed_book:๐Ÿ“— :green_book:
๐Ÿ“˜ :blue_book:๐Ÿ“™ :orange_book:๐Ÿ““ :notebook:
๐Ÿ“” :notebook_with_decorative_cover:๐Ÿ“’ :ledger:๐Ÿ“š :books:
๐Ÿ”– :bookmark:๐Ÿ“› :name_badge:๐Ÿ”ฌ :microscope:
๐Ÿ”ญ :telescope:๐Ÿ“ฐ :newspaper:๐Ÿˆ :football:
๐Ÿ€ :basketball:โšฝ :soccer:โšพ :baseball:
๐ŸŽพ :tennis:๐ŸŽฑ :8ball:๐Ÿ‰ :rugby_football:
๐ŸŽณ :bowling:โ›ณ :golf::mountain_bicyclist: :mountain_bicyclist:
:bicyclist: :bicyclist:๐Ÿ‡ :horse_racing:๐Ÿ‚ :snowboarder:
:swimmer: :swimmer::surfer: :surfer:๐ŸŽฟ :ski:
โ™ ๏ธ :spades:โ™ฅ๏ธ :hearts:โ™ฃ๏ธ :clubs:
โ™ฆ๏ธ :diamonds:๐Ÿ’Ž :gem:๐Ÿ’ :ring:
๐Ÿ† :trophy:๐ŸŽผ :musical_score:๐ŸŽน :musical_keyboard:
๐ŸŽป :violin:๐Ÿ‘พ :space_invader:๐ŸŽฎ :video_game:
๐Ÿƒ :black_joker:๐ŸŽด :flower_playing_cards:๐ŸŽฒ :game_die:
๐ŸŽฏ :dart:๐Ÿ€„ :mahjong:๐ŸŽฌ :clapper:
๐Ÿ“ :memo::pencil: :pencil::book: :book:
๐ŸŽจ :art:๐ŸŽค :microphone:๐ŸŽง :headphones:
๐ŸŽบ :trumpet:๐ŸŽท :saxophone:๐ŸŽธ :guitar:
:shoe: :shoe:๐Ÿ‘ก :sandal:๐Ÿ‘  :high_heel:
๐Ÿ’„ :lipstick:๐Ÿ‘ข :boot::shirt: :shirt:
๐Ÿ‘• :tshirt:๐Ÿ‘” :necktie:๐Ÿ‘š :womans_clothes:
๐Ÿ‘— :dress:๐ŸŽฝ :running_shirt_with_sash:๐Ÿ‘– :jeans:
๐Ÿ‘˜ :kimono:๐Ÿ‘™ :bikini:๐ŸŽ€ :ribbon:
๐ŸŽฉ :tophat:๐Ÿ‘‘ :crown:๐Ÿ‘’ :womans_hat:
๐Ÿ‘ž :mans_shoe:๐ŸŒ‚ :closed_umbrella:๐Ÿ’ผ :briefcase:
๐Ÿ‘œ :handbag:๐Ÿ‘ :pouch:๐Ÿ‘› :purse:
๐Ÿ‘“ :eyeglasses:๐ŸŽฃ :fishing_pole_and_fish:โ˜• :coffee:
๐Ÿต :tea:๐Ÿถ :sake:๐Ÿผ :baby_bottle:
๐Ÿบ :beer:๐Ÿป :beers:๐Ÿธ :cocktail:
๐Ÿน :tropical_drink:๐Ÿท :wine_glass:๐Ÿด :fork_and_knife:
๐Ÿ• :pizza:๐Ÿ” :hamburger:๐ŸŸ :fries:
๐Ÿ— :poultry_leg:๐Ÿ– :meat_on_bone:๐Ÿ :spaghetti:
๐Ÿ› :curry:๐Ÿค :fried_shrimp:๐Ÿฑ :bento:
๐Ÿฃ :sushi:๐Ÿฅ :fish_cake:๐Ÿ™ :rice_ball:
๐Ÿ˜ :rice_cracker:๐Ÿš :rice:๐Ÿœ :ramen:
๐Ÿฒ :stew:๐Ÿข :oden:๐Ÿก :dango:
๐Ÿฅš :egg:๐Ÿž :bread:๐Ÿฉ :doughnut:
๐Ÿฎ :custard:๐Ÿฆ :icecream:๐Ÿจ :ice_cream:
๐Ÿง :shaved_ice:๐ŸŽ‚ :birthday:๐Ÿฐ :cake:
๐Ÿช :cookie:๐Ÿซ :chocolate_bar:๐Ÿฌ :candy:
๐Ÿญ :lollipop:๐Ÿฏ :honey_pot:๐ŸŽ :apple:
๐Ÿ :green_apple:๐ŸŠ :tangerine:๐Ÿ‹ :lemon:
๐Ÿ’ :cherries:๐Ÿ‡ :grapes:๐Ÿ‰ :watermelon:
๐Ÿ“ :strawberry:๐Ÿ‘ :peach:๐Ÿˆ :melon:
๐ŸŒ :banana:๐Ÿ :pear:๐Ÿ :pineapple:
๐Ÿ  :sweet_potato:๐Ÿ† :eggplant:๐Ÿ… :tomato:
๐ŸŒฝ :corn:

Places

๐Ÿ  :house:๐Ÿก :house_with_garden:๐Ÿซ :school:
๐Ÿข :office:๐Ÿฃ :post_office:๐Ÿฅ :hospital:
๐Ÿฆ :bank:๐Ÿช :convenience_store:๐Ÿฉ :love_hotel:
๐Ÿจ :hotel:๐Ÿ’’ :wedding:โ›ช :church:
๐Ÿฌ :department_store:๐Ÿค :european_post_office:๐ŸŒ‡ :city_sunrise:
๐ŸŒ† :city_sunset:๐Ÿฏ :japanese_castle:๐Ÿฐ :european_castle:
โ›บ :tent:๐Ÿญ :factory:๐Ÿ—ผ :tokyo_tower:
๐Ÿ—พ :japan:๐Ÿ—ป :mount_fuji:๐ŸŒ„ :sunrise_over_mountains:
๐ŸŒ… :sunrise:๐ŸŒ  :stars:๐Ÿ—ฝ :statue_of_liberty:
๐ŸŒ‰ :bridge_at_night:๐ŸŽ  :carousel_horse:๐ŸŒˆ :rainbow:
๐ŸŽก :ferris_wheel:โ›ฒ :fountain:๐ŸŽข :roller_coaster:
๐Ÿšข :ship:๐Ÿšค :speedboat::boat: :boat:
โ›ต :sailboat::rowboat: :rowboat:โš“ :anchor:
๐Ÿš€ :rocket:โœˆ๏ธ :airplane:๐Ÿš :helicopter:
๐Ÿš‚ :steam_locomotive:๐ŸšŠ :tram:๐Ÿšž :mountain_railway:
๐Ÿšฒ :bike:๐Ÿšก :aerial_tramway:๐ŸšŸ :suspension_railway:
๐Ÿš  :mountain_cableway:๐Ÿšœ :tractor:๐Ÿš™ :blue_car:
๐Ÿš˜ :oncoming_automobile::car: :car:๐Ÿš— :red_car:
๐Ÿš• :taxi:๐Ÿš– :oncoming_taxi:๐Ÿš› :articulated_lorry:
๐ŸšŒ :bus:๐Ÿš :oncoming_bus:๐Ÿšจ :rotating_light:
๐Ÿš“ :police_car:๐Ÿš” :oncoming_police_car:๐Ÿš’ :fire_engine:
๐Ÿš‘ :ambulance:๐Ÿš :minibus:๐Ÿšš :truck:
๐Ÿš‹ :train:๐Ÿš‰ :station:๐Ÿš† :train2:
๐Ÿš… :bullettrain_front:๐Ÿš„ :bullettrain_side:๐Ÿšˆ :light_rail:
๐Ÿš :monorail:๐Ÿšƒ :railway_car:๐ŸšŽ :trolleybus:
๐ŸŽซ :ticket:โ›ฝ :fuelpump:๐Ÿšฆ :vertical_traffic_light:
๐Ÿšฅ :traffic_light:โš ๏ธ :warning:๐Ÿšง :construction:
๐Ÿ”ฐ :beginner:๐Ÿง :atm:๐ŸŽฐ :slot_machine:
๐Ÿš :busstop:๐Ÿ’ˆ :barber:โ™จ๏ธ :hotsprings:
๐Ÿ :checkered_flag:๐ŸŽŒ :crossed_flags:๐Ÿฎ :izakaya_lantern:
๐Ÿ—ฟ :moyai:๐ŸŽช :circus_tent:๐ŸŽญ :performing_arts:
๐Ÿ“ :round_pushpin:๐Ÿšฉ :triangular_flag_on_post:๐Ÿ‡ฏ๐Ÿ‡ต :jp:
๐Ÿ‡ฐ๐Ÿ‡ท :kr:๐Ÿ‡จ๐Ÿ‡ณ :cn:๐Ÿ‡บ๐Ÿ‡ธ :us:
๐Ÿ‡ซ๐Ÿ‡ท :fr:๐Ÿ‡ช๐Ÿ‡ธ :es:๐Ÿ‡ฎ๐Ÿ‡น :it:
๐Ÿ‡ท๐Ÿ‡บ :ru::gb: :gb:๐Ÿ‡ฌ๐Ÿ‡ง :uk:
๐Ÿ‡ฉ๐Ÿ‡ช :de:

Symbols

1๏ธโƒฃ :one:2๏ธโƒฃ :two:3๏ธโƒฃ :three:
4๏ธโƒฃ :four:5๏ธโƒฃ :five:6๏ธโƒฃ :six:
7๏ธโƒฃ :seven:8๏ธโƒฃ :eight:9๏ธโƒฃ :nine:
๐Ÿ”Ÿ :keycap_ten:๐Ÿ”ข :1234:0๏ธโƒฃ :zero:
#๏ธโƒฃ :hash:๐Ÿ”ฃ :symbols:โ—€๏ธ :arrow_backward:
โฌ‡๏ธ :arrow_down:โ–ถ๏ธ :arrow_forward:โฌ…๏ธ :arrow_left:
๐Ÿ”  :capital_abcd:๐Ÿ”ก :abcd:๐Ÿ”ค :abc:
โ†™๏ธ :arrow_lower_left:โ†˜๏ธ :arrow_lower_right:โžก๏ธ :arrow_right:
โฌ†๏ธ :arrow_up:โ†–๏ธ :arrow_upper_left:โ†—๏ธ :arrow_upper_right:
โฌ :arrow_double_down:โซ :arrow_double_up:๐Ÿ”ฝ :arrow_down_small:
โคต๏ธ :arrow_heading_down:โคด๏ธ :arrow_heading_up:โ†ฉ๏ธ :leftwards_arrow_with_hook:
โ†ช๏ธ :arrow_right_hook:โ†”๏ธ :left_right_arrow:โ†•๏ธ :arrow_up_down:
๐Ÿ”ผ :arrow_up_small:๐Ÿ”ƒ :arrows_clockwise:๐Ÿ”„ :arrows_counterclockwise:
โช :rewind:โฉ :fast_forward:โ„น๏ธ :information_source:
๐Ÿ†— :ok:๐Ÿ”€ :twisted_rightwards_arrows:๐Ÿ” :repeat:
๐Ÿ”‚ :repeat_one:๐Ÿ†• :new:๐Ÿ” :top:
๐Ÿ†™ :up:๐Ÿ†’ :cool:๐Ÿ†“ :free:
๐Ÿ†– :ng:๐ŸŽฆ :cinema:๐Ÿˆ :koko:
๐Ÿ“ถ :signal_strength:๐Ÿˆน :u5272:๐Ÿˆด :u5408:
๐Ÿˆบ :u55b6:๐Ÿˆฏ :u6307:๐Ÿˆท๏ธ :u6708:
๐Ÿˆถ :u6709:๐Ÿˆต :u6e80:๐Ÿˆš :u7121:
๐Ÿˆธ :u7533:๐Ÿˆณ :u7a7a:๐Ÿˆฒ :u7981:
๐Ÿˆ‚๏ธ :sa:๐Ÿšป :restroom:๐Ÿšน :mens:
๐Ÿšบ :womens:๐Ÿšผ :baby_symbol:๐Ÿšญ :no_smoking:
๐Ÿ…ฟ๏ธ :parking:โ™ฟ :wheelchair:๐Ÿš‡ :metro:
๐Ÿ›„ :baggage_claim:๐Ÿ‰‘ :accept:๐Ÿšพ :wc:
๐Ÿšฐ :potable_water:๐Ÿšฎ :put_litter_in_its_place:ใŠ™๏ธ :secret:
ใŠ—๏ธ :congratulations:โ“‚๏ธ :m:๐Ÿ›‚ :passport_control:
๐Ÿ›… :left_luggage:๐Ÿ›ƒ :customs:๐Ÿ‰ :ideograph_advantage:
๐Ÿ†‘ :cl:๐Ÿ†˜ :sos:๐Ÿ†” :id:
๐Ÿšซ :no_entry_sign:๐Ÿ”ž :underage:๐Ÿ“ต :no_mobile_phones:
๐Ÿšฏ :do_not_litter:๐Ÿšฑ :non-potable_water:๐Ÿšณ :no_bicycles:
๐Ÿšท :no_pedestrians:๐Ÿšธ :children_crossing:โ›” :no_entry:
โœณ๏ธ :eight_spoked_asterisk:โœด๏ธ :eight_pointed_black_star:๐Ÿ’Ÿ :heart_decoration:
๐Ÿ†š :vs:๐Ÿ“ณ :vibration_mode:๐Ÿ“ด :mobile_phone_off:
๐Ÿ’น :chart:๐Ÿ’ฑ :currency_exchange:โ™ˆ :aries:
โ™‰ :taurus:โ™Š :gemini:โ™‹ :cancer:
โ™Œ :leo:โ™ :virgo:โ™Ž :libra:
โ™ :scorpius:โ™ :sagittarius:โ™‘ :capricorn:
โ™’ :aquarius:โ™“ :pisces:โ›Ž :ophiuchus:
๐Ÿ”ฏ :six_pointed_star:โŽ :negative_squared_cross_mark:๐Ÿ…ฐ๏ธ :a:
๐Ÿ…ฑ๏ธ :b:๐Ÿ†Ž :ab:๐Ÿ…พ๏ธ :o2:
๐Ÿ’  :diamond_shape_with_a_dot_inside:โ™ป๏ธ :recycle:๐Ÿ”š :end:
๐Ÿ”› :on:๐Ÿ”œ :soon:๐Ÿ• :clock1:
๐Ÿ•œ :clock130:๐Ÿ•™ :clock10:๐Ÿ•ฅ :clock1030:
๐Ÿ•š :clock11:๐Ÿ•ฆ :clock1130:๐Ÿ•› :clock12:
๐Ÿ•ง :clock1230:๐Ÿ•‘ :clock2:๐Ÿ• :clock230:
๐Ÿ•’ :clock3:๐Ÿ•ž :clock330:๐Ÿ•“ :clock4:
๐Ÿ•Ÿ :clock430:๐Ÿ•” :clock5:๐Ÿ•  :clock530:
๐Ÿ•• :clock6:๐Ÿ•ก :clock630:๐Ÿ•– :clock7:
๐Ÿ•ข :clock730:๐Ÿ•— :clock8:๐Ÿ•ฃ :clock830:
๐Ÿ•˜ :clock9:๐Ÿ•ค :clock930:๐Ÿ’ฒ :heavy_dollar_sign:
ยฉ๏ธ :copyright:ยฎ๏ธ :registered:โ„ข๏ธ :tm:
โŒ :x::heavy_exclamation_mark: :heavy_exclamation_mark:โ€ผ๏ธ :bangbang:
โ‰๏ธ :interrobang:โญ• :o:โœ–๏ธ :heavy_multiplication_x:
โž• :heavy_plus_sign:โž– :heavy_minus_sign:โž— :heavy_division_sign:
๐Ÿ’ฎ :white_flower:๐Ÿ’ฏ :100:โœ”๏ธ :heavy_check_mark:
โ˜‘๏ธ :ballot_box_with_check:๐Ÿ”˜ :radio_button:๐Ÿ”— :link:
โžฐ :curly_loop:ใ€ฐ๏ธ :wavy_dash:ใ€ฝ๏ธ :part_alternation_mark:
๐Ÿ”ฑ :trident::black_square: :black_square::white_square: :white_square:
โœ… :white_check_mark:๐Ÿ”ฒ :black_square_button:๐Ÿ”ณ :white_square_button:
โšซ :black_circle:โšช :white_circle:๐Ÿ”ด :red_circle:
๐Ÿ”ต :large_blue_circle:๐Ÿ”ท :large_blue_diamond:๐Ÿ”ถ :large_orange_diamond:
๐Ÿ”น :small_blue_diamond:๐Ÿ”ธ :small_orange_diamond:๐Ÿ”บ :small_red_triangle:
๐Ÿ”ป :small_red_triangle_down::shipit: :shipit: