PureTools

Zodiac Signs Calculator: Find Your Sign by Birth Date

PureTools Team· 6 min read
Zodiac Signs Calculator: Find Your Sign by Birth Date

The 12 Zodiac Signs

The Western zodiac divides the year into 12 signs, each associated with specific personality traits, elements, and ruling planets. Whether you believe in astrology or just enjoy it for fun, knowing your zodiac sign is a cultural touchstone worldwide.

Signs and Date Ranges

SignDatesElementSymbol
AriesMar 21 - Apr 19FireRam
TaurusApr 20 - May 20EarthBull
GeminiMay 21 - Jun 20AirTwins
CancerJun 21 - Jul 22WaterCrab
LeoJul 23 - Aug 22FireLion
VirgoAug 23 - Sep 22EarthMaiden
LibraSep 23 - Oct 22AirScales
ScorpioOct 23 - Nov 21WaterScorpion
SagittariusNov 22 - Dec 21FireArcher
CapricornDec 22 - Jan 19EarthGoat
AquariusJan 20 - Feb 18AirWater Bearer
PiscesFeb 19 - Mar 20WaterFish

The Four Elements

  • Fire (Aries, Leo, Sagittarius): Passionate, energetic, bold, sometimes impulsive
  • Earth (Taurus, Virgo, Capricorn): Practical, grounded, reliable, sometimes stubborn
  • Air (Gemini, Libra, Aquarius): Intellectual, social, communicative, sometimes detached
  • Water (Cancer, Scorpio, Pisces): Emotional, intuitive, empathetic, sometimes moody

Programming a Zodiac Calculator

function getZodiacSign(month, day) {
  const signs = [
    { name: 'Capricorn', end: [1, 19] },
    { name: 'Aquarius', end: [2, 18] },
    { name: 'Pisces', end: [3, 20] },
    { name: 'Aries', end: [4, 19] },
    { name: 'Taurus', end: [5, 20] },
    { name: 'Gemini', end: [6, 20] },
    { name: 'Cancer', end: [7, 22] },
    { name: 'Leo', end: [8, 22] },
    { name: 'Virgo', end: [9, 22] },
    { name: 'Libra', end: [10, 22] },
    { name: 'Scorpio', end: [11, 21] },
    { name: 'Sagittarius', end: [12, 21] },
    { name: 'Capricorn', end: [12, 31] }
  ];
  return signs.find(s => 
    month < s.end[0] || (month === s.end[0] && day <= s.end[1])
  ).name;
}

Find your zodiac sign instantly with the PureTools Zodiac Signs Calculator. Enter your birth date and discover your sign, element, ruling planet, and key personality traits. Fun for everyone, whether you're a believer or a skeptic!