A simple keyboard for sending Japanese emoticons (Kaomoji) to anywhere.
You can download the latest release here.
This software is originally portable (just download the ZIP file and click KaomojiKeyboard.exe
to run), but you can also download the installer version (KaomojiKeyboard.Installer.exe
) to install this software like another software.
.NET Framework 4.0 is required before installing this software.
Just run the KaomojiKeyboard software and click an emoji to send it to the focused textbox. You can also switch to another category in another tab to send emojis fitted with the selected category.
To hide the keyboard, simply click the X button and it will automatically hide and run under the background. To show the keyboard when hiding, click the Alt + X button or the configured hotkeys in the Settings part.
This app will run under background in default (clicking the X button), but you can exit the application using the Application -> Exit
button.
You can go to the Application -> Settings
part to open the Settings window.
-
Start KaomojiKeyboard with Windows: If checked, this software will automatically start when Windows starts.
-
Show KaomojiKeyboard after starting: If checked, the keyboard will be shown after successfully starting (both on Windows startup and manually).
-
Emoji Database Path: The path to the current
emoji_data.json
database file. Default is.\emoji_data.json
, which leads to theemoji_data.json
file in the same folder with the application. -
Hotkeys to show the keyboard when hidden: The hotkeys to show the keyboard after hiding. Default is Alt + X
-
Hotkeys List: The hotkeys to send emojis set by the user. You can add as many hotkeys as you want, just make sure that it isn't as same as other hotkeys set before or Windows' default hotkeys.
After that, click OK to save the settings.
You can also open the settings.json
file in the same folder as the application to edit it manually.
The original JSON file will be like this:
{
"emoji_data_path": ".\\emoji_data.json",
"show_window_when_start": true
}
-
emoji_data_path:
The path to the currentemoji_data.json
database file. Default is.\emoji_data.json
, which leads to theemoji_data.json
file in the same folder with the application. -
show_window_when_start:
Iftrue
, the keyboard will be shown after successfully starting (both on Windows startup and manually).
You can also open the hotkeys.json
file in the same folder as the application to manually add hotkeys.
The original JSON file will be like this:
{
"show_keyboard": {
"key": "1.OemPeriod"
}
}
-
show_keyboard: The hotkeys used for showing the keyboard after hiding, whose the
key
property will be the key to show keyboard with the KaomojiHotKey scheme. -
You can also add your custom hotkeys by creating an object with the object key is the KaomojiHotKey scheme, and the object value is a nested object with these properties:
Property | Type | Description |
---|---|---|
type |
string | The type of the configured hotkeys, more options will be added later.\n- emoji if the configured hotkeys are to send an emoji. |
emoji |
string | If type is emoji , this property will be used to configured the emoji that will be sent if the user presses the configured hotkeys. |
Example of a hotkey object that send the emoji (* ^ ω ^)
if the user presses Alt + A:
{
"1.A": {
"type": "emoji",
"emoji": "(* ^ ω ^)"
}
}
And the entire JSON file will be like this:
{
"show_keyboard": {
"key": "1.OemPeriod"
},
"1.A": {
"type": "emoji",
"emoji": "(* ^ ω ^)"
}
}
String
: "<Modifier>.<Keys>"
Part | Description |
---|---|
<Modifier> |
- 1 if the first key is Alt.- 2 if the first key is Shift.- 4 if the first key is Control.- 8 if the first key is Windows. |
<Keys> |
The second .NET key (from the Fields part in the .NET Keys Enum documentation). |
You can add or remove emojis in the database using the Emoji Manager.
-
The
Categories
part will list all the emoji categories in the emoji database. You can add or remove a category as you want. -
The
Emoji List
part will list all the emojis in the selected category. You can also add or remove an emoji in the selected category.
After that, click the Save
button to save the emoji database.
You can also edit the emoji database by editing the emoji_data.json
file using the Emojis -> Emoji Data File... -> Open Emoji Data File...
button.
The JSON file will contain objects, each object will be a category with an array containing all of the emojis in it, for example:
{
"Games": [
"(^^) p _____ | _o ____ q (^^)",
"(/ O ^) / ° ⊥ \ (^ o\)",
"! (; ゚ o ゚) o /  ̄ ̄ ̄ ̄ ̄ ̄ ̄ ~> ゚)))) 彡",
"ヽ (^ o ^) ρ┳┻┳ ° σ (^ o ^) ノ",
"(/ _ ^) / ● \ (^ _ \)",
"“((≡ | ≡)) _ / \ _ ((≡ | ≡))”",
"(ノ -_-) ノ ゙ _ □ VS □ _ ヾ (^ – ^ ヽ)",
"ヽ (; ^ ^) ノ ゙ ...…___ 〇",
"(= O * _ *) = OQ (* _ * Q)",
"Ю ○ 三 \ ( ̄ ^  ̄\)"
],
"Faces": [
"(͡ ° ͜ʖ ͡ °)",
"(͡ ° ʖ̯ ͡ °)",
"(͠ ° ͟ʖ ͡ °)",
"(͡ᵔ ͜ʖ ͡ᵔ)",
"(. • ́ _ʖ • ̀.)",
"(ఠ ͟ʖ ఠ)",
"(͡ಠ ʖ̯ ͡ಠ)",
"(ಠ ʖ̯ ಠ)",
"(ಠ ͜ʖ ಠ)",
"(ಥ ʖ̯ ಥ)",
"(͡ • ͜ʖ ͡ •)",
"(・ ิ ͜ʖ ・ ิ)",
"(͡ ͜ʖ ͡)",
"(≖ ͜ʖ≖)",
"(ʘ ʖ̯ ʘ)",
"(ʘ ͟ʖ ʘ)",
"(ʘ ͜ʖ ʘ)",
"(; ´ ༎ ຶ ٹ ༎ ຶ `)"
]
}
You can add, edit or move emojis and categories in this file (which isn't supported in the Emoji Manager) as you want, as well as the file is a valid JSON file.
This command will refresh the emoji database from the emoji_data.json
file if the user edited it manually using the text editor.
-
Open Emoji Data File...: Open the
emoji_data.json
file using Notepad. -
Show Emoji Data File Location...: Show the current location of the
emoji_data.json
file in Explorer.
This command will reset the emoji_data.json
file to the default emoji database in the application code. This command can't be undone.
This software is written in C# using Microsoft Visual C# 2010 Express with .NET Framework 4.0, so make sure you have Visual Studio 2010 or later to edit and build this software from the given source code.
Just open the project from the KaomojiKeyboard.sln
file and you can edit it freely without any limitations.
Current version: v1.0.0
Build date: February 16, 2022
Made by Meir/Nico Levianth/LilShieru/S1est4.
Default database is crawled from: https://kynguyencongnghe.com/tong-hop-kaomoji-japanese-emoticons
I also copied some scripts from StackOverflow, shout out to ones who made it (I don't remember them) :')
Also, shout out to Facebook/100076324843858 for the idea!
Made with Microsoft Visual C# 2010 Express on Windows 10 20H2.
[GitHub]
Source code: https://www.github.com/LilShieru/KaomojiKeyboard
User: https://www.github.com/LilShieru