Created
January 23, 2018 19:24
-
-
Save terrorobe/801610db3fd92ac3830abebf7616317f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql> show variables like '%character%'; | |
+--------------------------+----------------------------+ | |
| Variable_name | Value | | |
+--------------------------+----------------------------+ | |
| character_set_client | utf8mb4 | | |
| character_set_connection | utf8mb4 | | |
| character_set_database | utf8mb4 | | |
| character_set_filesystem | binary | | |
| character_set_results | utf8mb4 | | |
| character_set_server | utf8mb4 | | |
| character_set_system | utf8 | | |
| character_sets_dir | /usr/share/mysql/charsets/ | | |
+--------------------------+----------------------------+ | |
8 rows in set (0.00 sec) | |
mysql> SELECT '\U+1F4A3'; | |
+------+ | |
| ? | | |
+------+ | |
| 💣 | | |
+------+ | |
1 row in set (0.00 sec) | |
mysql> show warnings; | |
Empty set (0.00 sec) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment