$1^\infty$ is not an actual word in the language, since $\infty$ is not a natural number - even though the language contains infinitely many words, each word has a finite, arbitrarily large length $n$.
A language is decidable if there is a Turing Machine can decide it in a finite number of steps for each input. That's obviously true here - there is no word that will take infinitely long to process.
The above was an example of a language, didn't think it would be recognizable. A better way to phrase my question is: Is there a language of any number of 1s over $Σ=\{0,1\}$ that you can make unrecognizable?
You mean an undecidable unary (consisting only of one symbol) language? Sure there is!
Take any language $L \in \{0,1\}^*$ that you already know to be undecidable. (For example, a language that encodes all halting Turing Machines.) Modify it a bit by adding "1" to the start of each word, to keep leading zeros.
Then let your language $L'$ consist of the word $1^n$ for every $n$ whose binary representation is in $L$. ~~As each word in $L$ can be easily turned into a word in $L'$~~*, a machine that decides $L'$ could be used to decide $L$. As $L$ is undecidable, so is $L'$.
Edit: *To be more precise: "As each binary word $w$ beginning with 1 can be converted into a word consisting of 1s $w'$ such that $w\in L$ iff $w' \in L'$..."