https://github.com/startautomating/emoji
⟩⚡PowerShell Emoji 😎😉😍🥰🤔😟
https://github.com/startautomating/emoji
emoji emojis powershell powershell-module
Last synced: 6 months ago
JSON representation
⟩⚡PowerShell Emoji 😎😉😍🥰🤔😟
- Host: GitHub
- URL: https://github.com/startautomating/emoji
- Owner: StartAutomating
- License: mit
- Created: 2024-02-20T22:50:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-16T02:42:27.000Z (12 months ago)
- Last Synced: 2025-03-24T08:46:07.557Z (7 months ago)
- Topics: emoji, emojis, powershell, powershell-module
- Language: PowerShell
- Homepage:
- Size: 1.05 MB
- Stars: 14
- Watchers: 2
- Forks: 0
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Emoji
⟩⚡PowerShell Emoji 😎😉😍🥰🤔😟Emoji is a little PowerShell module to help you work with Emoji.
It is built from the Unicode Character Dataset, which includes 44120 named symbols.
## Installing and Importing
Emoji is on the PowerShell Gallery.
You can install and import Emoji by using:
~~~PowerShell
Install-Module Emoji -Scope CurrentUser -Force
Import-Module Emoji
~~~## Searching Emoji
Search-Emoji or Find-Emoji can be used to search loaded Emoji
~~~PowerShell
# Find all of the Emoji faces
Find-Emoji -Pattern "Face"
~~~~~~PowerShell
# Search all emoji ending in cats and dogs
Search-Emoji -Pattern "(Cat|Dog)$"
~~~~~~PowerShell
# Find all emoji grins
Find-Emoji -Pattern "*grin*" -Like
~~~