Skip to content

Instantly share code, notes, and snippets.

@black-black-cat
Last active December 28, 2017 02:40
Show Gist options
  • Save black-black-cat/8532bd1097c5e0f268f8d3423a1e01f3 to your computer and use it in GitHub Desktop.
Save black-black-cat/8532bd1097c5e0f268f8d3423a1e01f3 to your computer and use it in GitHub Desktop.
太阳系九大行星的unicode,紧接下来就是星座符号
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