dev-resources.site
for different kinds of informations.
How to use Emojis in a Python + Django + MySQL project
Published at
5/30/2023
Categories
python
django
mysql
emoji
Author
fabiocaccamo
Author
12 person written this
fabiocaccamo
open
Did you ever received an error like this while saving some text containing Emojis to the database?
DataError at /admin/myapp/mymodel/1/change/
(1366, "Incorrect string value: '\\xF0\\x9F\\x99...' for column 'text' at row 1")
To overcome this problem you have to change the database and application charset to utf8mb4
:
MySQL
Backup your database
Edit
MySQL
conf and add/set the charset settings:
nano /etc/mysql/mysql.conf.d/mysqld.cnf
#
# * Character Set
#
character_set_server = utf8mb4
collation_server = utf8mb4_unicode_ci
- Update database tables character-set to
utf8mb4
:
SELECT CONCAT('ALTER TABLE ', table_name, ' CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;') AS alter_statement
FROM information_schema.tables
WHERE table_schema = 'mydatabasename';
Run the generated
ALTER
statementsRestart
MySQL
:
/etc/init.d/mysql restart
Django
- Add the
charset
option withutf8mb4
value to your database settings:
DATABASES = {
"default": {
"ENGINE": "django.db.backends.mysql",
# ...
"OPTIONS": {
"charset": "utf8mb4",
},
},
}
- Restart your application server
Done, now you can store Emojis in your database! 🚀
emoji Article's
30 articles in total
Boost Communication on Slack, Discord, GitHub, and Beyond! /BUTIFULL EMOJIS
read article
🍳 Emoji Kitchen Game: Create Fun Emoji Combos! (Open Source Project) 🚀
read article
Unicode, Emojis, and a bit of Golang
read article
🤪 Emojify Text Bookmarklet
read article
My First NuGet Package: EmojiToText
read article
New Emojis
read article
Diversifying Emojis With AI
read article
Emojify
read article
Biblioteca emoji-picker-element em português
read article
How to apply a skin tone to an emoji? 🧛🧛🏻🧛🏼🧛🏽🧛🏾🧛🏿
read article
A simple emojis todo app built with Next.js
read article
Design Custom Cart Emoji Online with Simplified Emoji Maker
read article
Tailwindcss version of Looms's beautiful Emoji Toolbar React component
read article
Code Meets Creativity: Crafting Emoji Names with Python
read article
Animated emojis for React apps
read article
Seamless emoji creation on Discord with bots and Vercel
read article
En Popüler Emoji Anlamları ve Kullanımı
read article
Fluent UI and Emoji used in Microsoft Teams
read article
EventBridge Emoji Event Patterns
read article
The Ultimate Emoji Cheat Sheet for Developers
read article
Emoji string lengths
read article
#LearnedToday: Compound Emoji 👨💻
read article
How to use Emojis in a Python + Django + MySQL project
currently reading
How to handle emojis in Nodejs
read article
Turbocharge Your Rocket.Chat with Bulk Emoji Uploads: Introducing the Ultimate Emoji Management Tool
read article
Length of a string
read article
Emojis in Development?
read article
Create a emoji-picker in dmenu
read article
st - the suckless simple terminal, v0.9
read article
What are your favourite emoji to use in build pipelines?
read article
Featured ones: