What programming language do you believe features the most peculiar and unattractive syntax?

I'm interested in hearing your thoughts on which programming language comes off as having the most unconventional and unattractive syntax. I am focusing on languages that are actually used in real-world settings rather than obscure or intentionally esoteric examples. My aim is to discuss languages that many developers work with daily, where the syntax might be considered overly complex, awkward, or just not visually appealing. Please elaborate on any specific design choices that contribute to these perceptions and include any personal experiences or insights regarding these languages.

i reckon perl often gets the blame for messy syntax, what with all the sigils and weird quirks. it can be tough at first glance, especially when dealing with old code that feels like a tangled web.

i find javascript kinda weird with its loose type coercions and surprising operator behaviors. sometimes its syntax feels like a riddle. how do u folks manage these subtle pitfalls in everyday coding?

In my experience, PHP stands out as having an unattractive and inconsistent syntax that can be challenging to work with. The languageā€™s design often leads to irregular naming conventions and sporadic function behavior, making code harder to read and maintain. While it remains popular in web development and offers practical solutions even in legacy systems, the fragmented approach to syntax design has led to a perception of clutter and unpredictability. This inconsistency has at times complicated development projects, especially when integrating with more standardized coding practices.

i find c++ to be super clunky sometimes. its syntax can be overenginered with all its strict rules and boilerplate that makes doing even basic things a pain. sometimes i just long for something more intuitive.