Last active
December 28, 2017 02:40
-
-
Save black-black-cat/8532bd1097c5e0f268f8d3423a1e01f3 to your computer and use it in GitHub Desktop.
太阳系九大行星的unicode,紧接下来就是星座符号
This file contains hidden or 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
| var str = '' | |
| var FP_CODE = 0x263f | |
| var FS_CODE = 0X2648 | |
| for (var i = 0; i < 9; i++) { str += String.fromCharCode( FP_CODE + i ) } // --> "☿♀♁♂♃♄♅♆♇" | |
| for (i = 0; i < 12; i++) { str += String.fromCharCode( FS_CODE + i ) } // --> "☿♀♁♂♃♄♅♆♇♈♉♊♋♌♍♎♏♐♑♒♓" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment